// ==UserScript== // @name EIPC & Steam 网页访问加速器 // @namespace https://bbs.tampermonkey.net.cn/ // @version 0.1.1 // @description 可以加速访问epic和steam // @author wyz // @grant CAT_setProxy // @background // ==/UserScript== return new Promise((resolve, reject) => { // Your code here... CAT_setProxy([{ proxyServer: { scheme: 'https', host: 'px.xloli.top', port: 23914, }, matchUrl: ["steampowered.com","epicgames.com","*.epicgames.com","*.steampowered.com","*.ip138.com"] }]); // CAT_clearProxy(); });