Greasy Fork is available in English.

油猴脚本更新链接自动转脚本主页

自动将油猴脚本的update链接转换至脚本首页

// ==UserScript==
// @name         油猴脚本更新链接自动转脚本主页
// @namespace    https://greasyfork.org/users/759046
// @version      0.1
// @description  自动将油猴脚本的update链接转换至脚本首页
// @author       233yuzi
// @match        https://update.greasyfork.org/scripts/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    autoGo()
    function autoGo() {
        let reg = RegExp(/update./)
        let a = location.href
        if (a.match(reg)) {
            a = a.replace("update.", "")
            console.log(a)
            location.href = a
        }
    }
})();