Skip to content

Instantly share code, notes, and snippets.

@tshu-w
Last active October 22, 2019 13:34
Show Gist options
  • Save tshu-w/136f461b93dc258f6322b496fd656717 to your computer and use it in GitHub Desktop.
Save tshu-w/136f461b93dc258f6322b496fd656717 to your computer and use it in GitHub Desktop.
Redirect m.huxiu.com to www.huxiu.com by Tampermokey
// ==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