Greasy Fork is available in English.
Wikiwand扩展功能多了点,只需要Wiki自动跳到Wikiwand
当前为
// ==UserScript==
// @name WikiToWikiwand
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Wikiwand扩展功能多了点,只需要Wiki自动跳到Wikiwand
// @author leone
// @match https://*.wikipedia.org/*
// @icon https://zh.wikipedia.org/static/favicon/wikipedia.ico
// @license GPL-3.0 License
// @grant none
// ==/UserScript==
(function() {
'use strict';
if (!document.URL.includes('oldformat=true')) {
window.location.replace(document.URL.replace(/https:\/\/(.*?)\.wikipedia\.org\/wiki\/(.*?)/, 'https://www.wikiwand.com/$1/$2'));
}
})();