您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Prevents the paragraph selection menu from appearing when clicking on text in stories.
// ==UserScript== // @name Prevent Fimfiction 4.0 Paragraph Selection // @namespace https://www.fimfiction.net/user/29560/Device+Null // @version 1.0 // @description Prevents the paragraph selection menu from appearing when clicking on text in stories. // @author Device Null // @match https://www.fimfiction.net/* // @grant none // ==/UserScript== (function() { 'use strict'; var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { var cl = mutation.target.classList; if (cl.contains('showing')) { cl.remove('showing'); } }); }); observer.observe(document.querySelector('#paragraph-options'), { attributes: true }); })();