没事找脚本

支持随机查看脚本, 以及上一个和下一个脚本

目前為 2022-03-17 提交的版本,檢視 最新版本

// ==UserScript==
// @name         没事找脚本
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  支持随机查看脚本, 以及上一个和下一个脚本
// @author       mininb666
// @match        *://greasyfork.org/*/scripts/*
// @grant        GM_registerMenuCommand
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    GM_registerMenuCommand("上一个",()=>{
        location.href=+location.href.substr(location.href.indexOf("scripts/")+6,(location.href.substr(location.href.indexOf("scripts/")+6)).indexOf("-"))-1
    })
    GM_registerMenuCommand("下一个",()=>{
        location.href=+location.href.substr(location.href.indexOf("scripts/")+6,(location.href.substr(location.href.indexOf("scripts/")+6)).indexOf("-"))+1
    })
    GM_registerMenuCommand("试试手气",()=>{
        location.href=Math.floor(Math.random()*444444);
    })
})();