Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions proxy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
var obj= $response.body;
var proxy= [];
obj= obj.split("\n");
for (var i = 0; i < obj.length -1; i++) {
proxy[i]= "Proxy_" +i + " = socks5, " + obj[i];
}
//console.log(proxy);
$done({body: proxy.toString().replace(/,Proxy/g, "Proxy").replace(/:/g, ", ")});
7 changes: 7 additions & 0 deletions quanx.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/*
hostname = raw.githubusercontent.com, *.github.io,
^https:\/\/(raw.githubusercontent|\w+\.github)\.(com|io)\/.*\.js$ url script-response-body quanx.js
*/
var body = $response.body;
body = '\/*\n@supported F06A2C1CA3BE\n*\/\n' + body;
$done(body);