Greasy Fork

Greasy Fork is available in English.

Luogu CF link redirect

F**k u Mike

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Luogu CF link redirect
// @namespace    https://www.luogu.com.cn/blog/765382/
// @version      1.0
// @description  F**k u Mike
// @author       ThaumicExecutor as 0x1f1e33
// @match        https://www.luogu.com.cn/problem/*
// @exclude      https://www.luogu.com.cn/problem/list
// @icon         https://cdn.luogu.com.cn/upload/usericon/765382.png
// @require      https://cdn.staticfile.org/jquery/3.4.1/jquery.min.js
// @require      https://cdn.bootcss.com/jqueryui/1.12.1/jquery-ui.min.js
// @grant        unsafeWindow
// @license      MIT
// ==/UserScript==
(function() {
    var url=window.location.href;
    if(url.search("CF")!=-1){
        document.getElementsByTagName("section")[0].getElementsByTagName("a")[0].href=
        document.getElementsByTagName("section")[0].getElementsByTagName("a")[0].href.replace("codeforces.com","codeforc.es");
    }
})();