mirror of
https://github.com/anticensority/runet-censorship-bypass.git
synced 2024-11-23 18:03:44 +03:00
Chromium extension for bypassing censorship in Russia
anticensorityanticensorshipantizapretchrome-extensionchromiumfreedompac-scriptsrussiastarred-anticensority-repostarred-repo
Benchmark | ||
chart | ||
extensions/chromium | ||
pac-generator | ||
.gitignore | ||
package.json | ||
README.md |
Антизапрет PAC-скрипт
- IPs indexOf – Blocked IP is search by
indexOf
- IPs binary – Blocked IP is search by binary search. For some reason miss time slightly increased.
- IPs switch – Simply
switch(Blocked_IP) { case1: ... caseN: return true }
. Works even better than binary search. Magic. - Hosts switch – Radix trie built on
switch
. Comparable to IPs switch.