您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
支持随机查看用户, 以及上一个和下一个用户
// ==UserScript== // @name 没事找用户 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 支持随机查看用户, 以及上一个和下一个用户 // @author mininb666 // @match *://greasyfork.org/*/users/* // @grant GM_registerMenuCommand // @license MIT // ==/UserScript== (function() { 'use strict'; GM_registerMenuCommand("上一条",()=>{ location.href=+location.href.substr(location.href.indexOf("users/")+6,(location.href.substr(location.href.indexOf("users/")+6)).indexOf("-"))-1 }) GM_registerMenuCommand("下一条",()=>{ location.href=+location.href.substr(location.href.indexOf("users/")+6,(location.href.substr(location.href.indexOf("users/")+6)).indexOf("-"))+1 }) GM_registerMenuCommand("试试手气",()=>{ location.href=Math.floor(Math.random()*900000); }) })();