mobile url replacer

mobile link to na.cx

As of 2016-12-11. See the latest version.

// ==UserScript==
// @name        mobile url replacer
// @description mobile link to na.cx
// @namespace 1
// @include     http*://*.lihkg.com/*
// @version     1
// ==/UserScript==

var url = location.href;

if (location.href.search("lihkg.com/")>0){
  url = url.replace("lihkg.com/","lihkg.na.cx/");
  location.href=url;
}