andy0130tw
4/7/2015 - 11:03 AM

Automatically redirect Chinese Wikiwand pages to Traditional Chinese version!

Automatically redirect Chinese Wikiwand pages to Traditional Chinese version!

// ==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);