try to take over the world!
// ==UserScript==
// @name mouser.com自动跳到mouser.cn
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author hendeliao
// @include https://www.mouser.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
// Your code here...
window.location.href=window.location.href.replace(/www.mouser.com/,"www.mouser.cn");
})();