Created
April 7, 2015 11:03
-
-
Save andy0130tw/bf8cceb49892efb0e042 to your computer and use it in GitHub Desktop.
Automatically redirect Chinese Wikiwand pages to Traditional Chinese version!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name WW Convert to Trad. Chinese | |
| // @namespace andypan.wikiwand.tradc | |
| // @include http://www.wikiwand.com/zh/* | |
| // @version 1 | |
| // @grant none | |
| // @@run-at document-start | |
| // ==/UserScript== | |
| // Use it with GreaseMonkey (for Firefox) or Tampermonkey (for Chrome)! | |
| (function(loc){ | |
| loc.replace(loc.href.replace(/\/zh\//, "/zh-tw/")); | |
| })(location); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment