您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
OMC の問題ページの Like ボタンを目立たなくします
// ==UserScript== // @name omc_simple_like_buttons // @namespace http://tampermonkey.net/ // @version 0.1 // @description OMC の問題ページの Like ボタンを目立たなくします // @author tamuraup // @match https://onlinemathcontest.com/contests/*/tasks/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; let container=document.querySelector(".bookmark-container"); container.querySelector(".dropdown-toggle").remove(); container.style.wdith="100%"; container.style.display="flex"; container.style.justifyContent="flex-end"; container.style.margin="0"; let outer_container=document.querySelector("challenge-container"); container.remove(); outer_container.prepend(container); // remove writer let wp=Array.from(document.querySelector("challenge-container").querySelectorAll("p").values()).filter(x=>x.textContent.match(/\s*Writer:/)); if(wp.length>0)wp[0].remove(); })();