Greasy Fork

来自缓存

Lite代理软件指引

一款专注于简单轻量的代理软件。

// ==UserScript==
// @name        Lite代理软件指引
// @namespace   greasyfork.org
// @match       https://greasyfork.org/*
// @match       http://greasyfork.cloud/*
// @match       https://github.com/*
// @match       https://*.youtube.com/*
// @grant       GM_registerMenuCommand
// @version     1.5
// @author      -
// @description 一款专注于简单轻量的代理软件。
// ==/UserScript==

const url="https://github.com/seelite/lite"

if (typeof GM_registerMenuCommand === "function") {
    GM_registerMenuCommand("🌍 代理", ()=>{
        const a = document.createElement("a");
        a.href=url;
        a.target="_blank";
        a.click();
    });
}else{
    alert("你的浏览器不受支持,请手动前往 https://github.com/seelite/lite")
}