-
-
Save orion1vi/7a37c6115773ad104fdc83dfec076900 to your computer and use it in GitHub Desktop.
Revisions
-
orion1vi revised this gist
Mar 26, 2026 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,8 @@ proxies = [ ["127.0.0.1:9050", "nyaa.si", "kemono.su", "coomer.su", "macrumors.com" ], ]; -
orion1vi revised this gist
May 21, 2025 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,6 +4,7 @@ proxies = [ ["127.0.0.1:9050", "nyaa.si", "kemono.su", "coomer.su" ], ]; -
orion1vi created this gist
Jan 5, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ function FindProxyForURL(url, host) { proxies = [ ["127.0.0.1:9050", "nyaa.si", "kemono.su", ], ]; for (var x = 0; x < proxies.length; x++) for (var y = 1; y < proxies[x].length; y++) if (host == proxies[x][y] || shExpMatch(host, "*." + proxies[x][y])) return "SOCKS " + proxies[x][0]; return "DIRECT"; }