您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes example sentence translations visible on mouseover
当前为
// ==UserScript== // @name WK Lesson Spoiler Tags // @namespace ktx_wk_lesson // @version 0.2 // @description Makes example sentence translations visible on mouseover // @author Karsten Rohweder // @match https://www.wanikani.com/lesson/session // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; GM_addStyle('.context-sentence-group>p:nth-child(2) { color: transparent; text-shadow: 0 0 15px #aaa; } .context-sentence-group>p:nth-child(2):hover { color: black; text-shadow: none }'); })();