Greasy Fork

npo start visited links

add a bit of css so visited links turn dark green (easy to customize). Both show links and episodes work.

目前为 2025-01-05 提交的版本。查看 最新版本

// ==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)