您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
show the 字 next to the words that would usually be in popups
// ==UserScript== // @name Lnmtl Learn Chinese // @namespace http://lnmtl.com/chapter/ // @version 0.3 // @description show the 字 next to the words that would usually be in popups // @author Nazgand // @match http://lnmtl.com/chapter/* // @match https://lnmtl.com/chapter/* // @grant none // ==/UserScript== document.querySelector('button.js-toggle-original').click(); document.querySelectorAll('.translated [data-original-title]').forEach( function(e) { e.innerText = '{' + e.getAttribute('data-title') + ':' + e.innerText + '}'; e.style.whiteSpace = 'nowrap'; }); document.querySelector('div[id="chat-killer"]').click();