Do not redirect to China Version Website

try to take over the world!

目前为 2019-07-06 提交的版本。查看 最新版本

// ==UserScript==
// @name         Do not redirect to China Version Website
// @namespace    ATGT
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        *://*.leetcode-cn.com/*
// @match        *://*.leetcode.com/*
/* https://leetcode-cn.com/?utm_source=LCUS&utm_medium=banner_redirect&utm_campaign=transfer2china */
// @grant        none
// @run-at		 document-end
// ==/UserScript==

(function() {
    'use strict';
	if (/leetcode-cn.com$/.test(location.host)) {
		location.host.replace(/leetcode-cn.com$/, 'leetcode.com');
	} else if (/leetcode.com$/.test(location.host)) {
		document.querySelector('#region_switcher .close-btn').click();
	}
    // Your code here...
})();