Skip to content

Instantly share code, notes, and snippets.

@pigfoot
Last active July 3, 2019 14:07
Show Gist options
  • Save pigfoot/e43748805cf802774c2fd3e1aee137d4 to your computer and use it in GitHub Desktop.
Save pigfoot/e43748805cf802774c2fd3e1aee137d4 to your computer and use it in GitHub Desktop.
Wikipedia 2 Wikiwand
// ==UserScript==
// @name Wikipedia 2 Wikiwand
// @version 1.0.2
// @description A fork/expansion of the user script "Wikipedia 2 Wikiwand" <https://greasyfork.org/en/scripts/23047-wikipedia-2-wikiwand-global/>.
// @include /^https?:\/\/([\w-]+)(\.m)?\.wikipedia\.org\/(wiki|zh|zh-tw)\/.*$/
// @exclude /^https?:\/\/([\w-]+)(\.m)?\.wikipedia\.org\/(wiki|zh|zh-tw)\/.*\?oldformat=true/
// @namespace https://gist.github.com/pigfoot/e43748805cf802774c2fd3e1aee137d4
// @author pigfoot Chen
// @run-at document-start
// @grant none
// ==/UserScript==
var theurl = document.URL;
var res = theurl.replace(/([\w-]+)(\.m)?\.wikipedia\.org\/(wiki|zh|zh-tw)/i, "www.wikiwand.com/$1");
res = res.replace(/www\.wikiwand\.com\/zh\//i, "www.wikiwand.com/zh-tw/");
window.location.href = (res);
@pigfoot
Copy link
Author

pigfoot commented Jul 2, 2019

Don't click "Raw" to install otherwise it cannot be updated.
Install: https://gist.github.com/pigfoot/e43748805cf802774c2fd3e1aee137d4/raw/Wikipedia2Wikiwand.user.js

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment