Skip to content

Instantly share code, notes, and snippets.

@nucular
Created March 7, 2015 18:21
Show Gist options
  • Save nucular/b2101272f2724f001994 to your computer and use it in GitHub Desktop.
Save nucular/b2101272f2724f001994 to your computer and use it in GitHub Desktop.
8chan: Foce Catalog on board index
// ==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