返回首頁 

Greasy Fork is available in English.

微博(2021版)打开全部相册+手机版

为微博(2021版)增加打开全部相册+手机版的链接


安装此脚本?
// ==UserScript==// @name         微博(2021版)打开全部相册+手机版// @namespace    http://tampermonkey.net/// @version      1.0.2// @description  为微博(2021版)增加打开全部相册+手机版的链接// @author       Wesley King// @match        https://weibo.com/u/*// @icon         https://www.sinaimg.cn/blog/developer/wiki/LOGO_64x64.png// @grant           GM_registerMenuCommand// ==/UserScript==(function() {var path = window.location.pathname;var pathArr = path.split("/");var uid = pathArr[2];GM_registerMenuCommand("打开全部相册",function(){window.location.replace("https://photo.weibo.com/"+uid);});GM_registerMenuCommand("打开手机版",function(){window.location.replace("https://m.weibo.cn/profile/"+uid);});})();