New post: Copyright Accelerationism
This commit is contained in:
parent
2be6682719
commit
771f8964b4
17 changed files with 106 additions and 138 deletions
14
checktor.js
Normal file
14
checktor.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
Tor2web blocking script
|
||||
written by Vane Vander <https://mayvaneday.org>
|
||||
released under MIT License
|
||||
*/
|
||||
|
||||
let text = window.location.href;
|
||||
let pet = text.includes("onion.pet");
|
||||
let ws = text.includes("onion.ws");
|
||||
let search = text.includes("onionsearchengine.com");
|
||||
let cyber = text.includes("cyber-hub.pw");
|
||||
if ((pet === true) || (ws === true) || (search === true) || (cyber === true)) {
|
||||
window.location.replace("https://theannoyingsite.com");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue