Greasy Fork is available in English.
从 leetcode.cn 强制跳转回 leetcode.com。
// ==UserScript==
// @name FuckYou-leetcode.cn
// @namespace http://my-unique-space
// @version 0.1
// @description 从 leetcode.cn 强制跳转回 leetcode.com。
// @author ultrasev
// @icon https://www.google.com/s2/favicons?sz=64&domain=leetcode.com
// @match https://leetcode.cn/*
// @grant GM_xmlhttpRequest
// @license MIT
// ==/UserScript==
(function () {
'use strict';
window.location.replace("https://leetcode.com");
})();