LIHKG App Url Replacer

app shared link redirect to na.cx (web)

ของเมื่อวันที่ 11-12-2016 ดู เวอร์ชันล่าสุด

// ==UserScript==
// @name        LIHKG App Url Replacer
// @description app shared link redirect to na.cx (web)
// @author	123321
// @version 	1.4
// @include 	http://lihkg.com/*
// @include 	https://lihkg.com/*

// @namespace 1
// ==/UserScript==

var url = location.href;

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