Skip to content

Instantly share code, notes, and snippets.

@innateessence
Created June 29, 2024 07:19
Show Gist options
  • Save innateessence/20415611edafce81559648dd30f1d71b to your computer and use it in GitHub Desktop.
Save innateessence/20415611edafce81559648dd30f1d71b to your computer and use it in GitHub Desktop.
Redirect wikipedia URLs to wikiwand URLs [userscript]
// ==UserScript==
// @name WikiWand Redirect
// @namespace InnateEssense.wikiwand
// @version 0.1
// @description Automatically redirects wikipedia urls to wikiwand for a better UX
// @author InnateEssense
// @license MIT
// @source TODO
// @match en.wikipedia.org/wiki/*
// @icon TODO
// @grant none
// ==/UserScript==
(function() {
'use strict';
console.debug('[*] WikiWand Redirecting');
location.href = location.href.replace("://en.wikipedia.org/wiki/", "://wikiwand.com/en/");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment