Warning: fopen(/www/sites/greasyfork.icu/index/store/forever/d08b8cd97e0424fff9c182fdf62cab17.html): failed to open stream: No space left on device in /www/sites/greasyfork.icu/index/scriptsControl.php on line 132
Wikipedia 2 Wikiwand - 源代码

Greasy Fork

Greasy Fork is available in English.

Wikipedia 2 Wikiwand

This script is an easy way to try out and view Wikiwand which displays a clean and modernized version of Wikipedia.

当前为 2016-12-24 提交的版本,查看 最新版本

// ==UserScript==
// @name          Wikipedia 2 Wikiwand
// @version       1.0
// @run-at        document-start
// @description   This script is an easy way to try out and view Wikiwand which displays a clean and modernized version of Wikipedia.
// @include       http://en.wikipedia.org/wiki/*
// @include       https://en.wikipedia.org/wiki/*
// @exclude       http://en.wikipedia.org/wiki/*?oldformat=true
// @exclude       https://en.wikipedia.org/wiki/*?oldformat=true
// @author        drhouse
// @grant         none
// @namespace http://greasyfork.icu/users/10118
// ==/UserScript==

var theurl = document.URL;
var res = theurl.replace(/en.wikipedia.org\/wiki/gi, "www.wikiwand.com/en");
window.location.href = (res);