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