光速寻找适用于当前网站的脚本
// ==UserScript==
// @name 光速寻找适用于当前网站的脚本
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.6
// @description 一键跳转搜索适用于当前网站的脚本
// @match *://*/*
// @icon https://scriptcat.org/assets/logo.png
// @require https://scriptcat.org/lib/881/1.2.0/script-statistics.js
// @connect scriptcat.org
// @antifeature tracking
// @run-at document-start
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_xmlhttpRequest
// @grant GM_registerMenuCommand
// @grant GM_openInTab
// ==/UserScript==
(function () {
'use strict';
new SC_Statistic({ key: "isrmqq318tqr29i4", banFrame: false });
GM_registerMenuCommand("ScriptCat 搜索(雨露均占)", function () {
GM_openInTab("https://scriptcat.org/search?keyword=" + document.title, { active: true });
});
GM_registerMenuCommand("ScriptCat 搜索(独爱一枝)", function () {
GM_openInTab("https://scriptcat.org/search?domain=" + document.domain, { active: true });
});
// Your code here...
})();