Guest User

Untitled

a guest
May 3rd, 2024
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        2ch.hk -> 2ch.live
  3. // @match       *://2ch.*/*
  4. // ==/UserScript==
  5. let links = document.getElementsByTagName('a');
  6. for (let i = 0; i < links.length; i++) {
  7.   if (links[i].href.indexOf('2ch.hk') !== -1) {
  8.     links[i].href = links[i].href.replace('2ch.hk', '2ch.live');
  9.   }
  10. }
Add Comment
Please, Sign In to add comment