Greasy Fork is available in English.
从竞赛页面跳转至问题页面
当前为
// ==UserScript==
// @name LeetCode-cn竞赛页面跳转
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 从竞赛页面跳转至问题页面
// @author Weng
// @match https://leetcode-cn.com/contest/*/problems/*/
// @icon https://www.google.com/s2/favicons?domain=leetcode-cn.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
const href = location.href.replace(/\/contest\/weekly-contest-\d+/, "")
const btn = `<a class="btn btn-success" href="${href}"> 跳转问题页面</a>`
document.querySelector('.btn-default').insertAdjacentHTML('afterend', btn)
})();