Leetcode CN/EN site switcher

Leetcode中英文网站切换,切换使用ctr+`(Esc下面,数字1左边那个按钮); 屏蔽中文跳转banner,可以将"||leetcode.cn/api/is_china_ip/"填入到adblocker

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Leetcode CN/EN site switcher
// @namespace    http://tampermonkey.net/
// @license MIT
// @version      0.2
// @description  Leetcode中英文网站切换,切换使用ctr+`(Esc下面,数字1左边那个按钮); 屏蔽中文跳转banner,可以将"||leetcode.cn/api/is_china_ip/"填入到adblocker
// @author       GeeMaple
// @match        *://leetcode.com/*
// @match        *://leetcode.cn/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=leetcode.com

// ==/UserScript==

(function() {
    'use strict';

    document.addEventListener('keydown', function(event) {
        if ((event.ctrlKey && event.key === '`')) {
            event.preventDefault();
            let url = window.location.href;
            if (url.includes('leetcode.com')) {
                window.location.assign(url.replace('leetcode.com', 'leetcode.cn'))
            } else {
                window.location.assign(url.replace('leetcode.cn', 'leetcode.com'))
            }
        }
    });
})();