您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Deals with html code that jpdb-connect throws at a custom definition when the "definition" field is set to "glossary"
// ==UserScript== // @name JPDB Custom Glossary fix // @version 1 // @grant none // @author Ras#0612 // @description Deals with html code that jpdb-connect throws at a custom definition when the "definition" field is set to "glossary" // @match https://jpdb.io/review* // @match https://jpdb.io/vocabulary/* // @icon https://www.google.com/s2/favicons?sz=64&domain=jpdb.io // @run-at document-start // @license MIT // @run-at document-idle // @namespace https://gf.qytechs.cn/users/1092001 // ==/UserScript== window.addEventListener('load', function() { var elements = document.querySelectorAll(".mnemonic.custom-meaning"); for (var i = 0; i < elements.length; i++) { elements[i].innerHTML = elements[i].innerHTML.replace(/</g, '<').replace(/>/g, '>'); } }, false);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址