Advertisement
zetlnd

Untitled

Mar 14th, 2022
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Redirect OLD reactor
  3. // @description Redirect to old.reactor
  4. // @author donotblink
  5. // @namespace https://greasyfork.org/users/675552
  6. // @include *://*joyreactor.cc/*
  7. // @include *://*reactor.cc/*
  8. // @include *://*jr-proxy.com/*
  9. // @include *://*jrproxy.com/*
  10. // @include *://*cookreactor.com/*
  11. // @include *://*thatpervert.com/*
  12. // @include *://pr.reactor.cc/*
  13. // @include *://*safereactor.cc/*
  14. // @exclude http://old.reactor.cc/*
  15. // @exclude http://m.reactor.cc/*
  16. // @exclude *://img*.reactor.cc/*
  17. // @version 0.0.1.20210703091838
  18. // ==/UserScript==
  19. const url = new URL(document.location.href);
  20. window.open('http://old.reactor.cc' + url.pathname,"_self");
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement