1/03/2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Trakt History Remover | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Clear all trakt history | |
// @author You | |
// @match https://trakt.tv/users/*/history | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--dark-grey: rgb(24, 26, 27); | |
--dark-medium-grey: rgb(27, 30, 31); | |
--medium-grey: rgb(31, 34, 35); | |
--dark-green: rgb(23, 55, 53); | |
--grey: grey; | |
--light-medium-grey: rgb(140, 130, 115); | |
--light-grey: rgb(208, 204, 197); | |
--near-medium-white: rgb(192, 186, 178); | |
--near-white: rgb(232, 230, 227); |