Created
March 7, 2015 18:21
-
-
Save nucular/b2101272f2724f001994 to your computer and use it in GitHub Desktop.
8chan: Foce Catalog on board index
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name 8chan Force Catalog | |
// @namespace http://nucular.github.io | |
// @version 0.1 | |
// @description Redirects to the catalog on 8chan boards | |
// @include /^https?:\/\/8ch\.net\/\w+\/?$/ | |
// @copyright 2015+, nucular | |
// @run-at document-start | |
// ==/UserScript== | |
var b = window.location.href.match(/^https?:\/\/8ch\.net\/(\w+)\/?/)[1]; | |
window.location.href = "https://8ch.net/" + b + "/catalog.html"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment