// ==UserScript== // @name Redirect 8chan Boards to Catalog // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://8chan.moe/vg/ // @match https://8chan.moe/h/ // @match https://8chan.moe/v/ // @match https://8chan.moe/pol/ // @match https://8chan.moe/vr/ // @match https://8chan.moe/meta/ // @match https://8chan.moe/jp/ // @grant none // ==/UserScript== if (window.location.href == "https://8chan.moe/vg/"){window.location.replace("https://8chan.moe/vg/catalog.html");} if (window.location.href == "https://8chan.moe/h/"){window.location.replace("https://8chan.moe/h/catalog.html");} if (window.location.href == "https://8chan.moe/v/"){window.location.replace("https://8chan.moe/v/catalog.html");} if (window.location.href == "https://8chan.moe/pol/"){window.location.replace("https://8chan.moe/pol/catalog.html");} if (window.location.href == "https://8chan.moe/vr/"){window.location.replace("https://8chan.moe/vr/catalog.html");} if (window.location.href == "https://8chan.moe/meta/"){window.location.replace("https://8chan.moe/meta/catalog.html");} if (window.location.href == "https://8chan.moe/jp/"){window.location.replace("https://8chan.moe/jp/catalog.html");}