腳本已歸檔
該腳本已經被作者歸檔,腳本可能失效並且作者不再維護,你無法再進行問題反饋。
// ==UserScript==
// @name 免费chrome商店代理
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.2
// @description 可以连接chrome商店,请使用ScriptCat执行本脚本
// @author wyz
// @grant CAT_setProxy
// @background
// @supportURL https://bbs.tampermonkey.net.cn/forum.php?mod=viewthread&tid=417
// @homepage https://bbs.tampermonkey.net.cn/forum.php?mod=viewthread&tid=417
// ==/UserScript==
return new Promise((resolve, reject) => {
// Your code here...
CAT_setProxy([{
proxyServer: {
scheme: 'https',
host: 'px.xloli.top',
port: 23914,
},
matchUrl: ["chrome.google.com", "play.google.com", "*.googleusercontent.com", "*.ip138.com","clients2.google.com","scholar.google.com","scholar.googleusercontent.com"]
}]);
// CAT_clearProxy();
});