NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @namespace https://openuserjs.org/users/moneytoo // @name Apple (iTunes) Movie Trailers Visited Links // @description Make visited links (movies) more distinct. // @copyright 2020, moneytoo (https://openuserjs.org/users/moneytoo) // @license MIT // @version 0.1 // @author moneytoo // @grant GM_addStyle // @match https://trailers.apple.com/ // ==/UserScript== // ==OpenUserJS== // @author moneytoo // ==/OpenUserJS== (function() { 'use strict'; GM_addStyle("#trailers li a:visited { color: #DDD !important; }"); })();