您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
add a bit of css so visited links turn dark green (easy to customize). Both show links and episodes work.
当前为
// ==UserScript== // @name:nl npo start bezochte links // @name npo start visited links // @version 1 // @include https://npo.nl/* // @grant none // @run-at document-end // @namespace refractor.dev // @description add a bit of css so visited links turn dark green (easy to customize). Both show links and episodes work. // @description:nl Maakt bezochte links groen zodat je makkelijk kan zien wat je al bekeken hebt. Werkt voor series, maar ook voor afleveringen. // @license GPLv3 // ==/UserScript== ss = ` a:visited h3{ color:darkgreen !important; } ` var styleSheet = document.createElement("style") styleSheet.textContent = ss document.head.appendChild(styleSheet)