Last active
October 22, 2019 13:34
-
-
Save tshu-w/136f461b93dc258f6322b496fd656717 to your computer and use it in GitHub Desktop.
Redirect m.huxiu.com to www.huxiu.com by Tampermokey
This file contains 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 Redirect Huxiu Mobile Link | |
// @namespace https://gist.github.com/TshuW/136f461b93dc258f6322b496fd656717 | |
// @version 0.1 | |
// @description Redirect m.huxiu.com to www.huxiu.com | |
// @author Tshu Wang | |
// @match m.huxiu.com/article/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
window.location.replace("https://www.huxiu.com"+window.location.pathname); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment