Skip to content

Instantly share code, notes, and snippets.

@Wyrrrd
Last active May 9, 2022 15:32
Show Gist options
  • Save Wyrrrd/437b0280117a4b89119db769114ad3b6 to your computer and use it in GitHub Desktop.
Save Wyrrrd/437b0280117a4b89119db769114ad3b6 to your computer and use it in GitHub Desktop.
SCPredirect - redirect old SCP-Wiki URL to new URL
// ==UserScript==
// @name SCPredirect
// @namespace wyrrrd.de
// @version 1.0.0
// @author Wyrrrd
// @license Unlicense
// @description Redirects old SCP-Wiki URL to new URL
// @icon https://scp-wiki.wikidot.com/local--iosicon/iosicon.png
// @downloadurl https://gist.github.com/Wyrrrd/437b0280117a4b89119db769114ad3b6/raw/SCPredirect.user.js
// @include https://scp-wiki.wikidot.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
page_links = document.getElementsByTagName('a');
for(var i = 0; i < page_links.length; i++){
curr_link = page_links[i];
if (curr_link.href.indexOf('www.scp-wiki.net/') !== - 1) {
curr_link.href = curr_link.href.replace(/www.scp-wiki.net/, 'scp-wiki.wikidot.com');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment