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