Purplify Trakt.tv

Purplify the VIP and Scrobble bar and corner ratings, hearts kept red

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Purplify Trakt.tv
// @namespace    http://tampermonkey.net/
// @version      2024-10-18.2
// @description  Purplify the VIP and Scrobble bar and corner ratings, hearts kept red
// @license MIT
// @author       Tusk
// @match        https://trakt.tv/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=trakt.tv
// @grant        GM_addStyle
// ==/UserScript==

GM_addStyle("#watching-now-wrapper > .progress-bar { background-color: rgba(68, 26, 85, .9); }");
GM_addStyle("#watching-now-wrapper { background-color: rgba(159, 66, 198, .9); }");
GM_addStyle("#results-top-wrapper.user-wrapper.watching-now #watching-now-wrapper { background-color: rgba(159, 66, 198, .9); }");
GM_addStyle("#watching-now-wrapper .percentage { background-image: linear-gradient(to right,rgba(149,23,22,0) 0%,#441a55 40%); }");
GM_addStyle(".label-vip { background-color: #9f42c6; }");
GM_addStyle(".label-vip > .ep { background-color: #441a55; }");

GM_addStyle(".corner-rating.corner-rating-1 {border-color: transparent #4a464d transparent transparent}");
GM_addStyle(".corner-rating.corner-rating-2 {border-color: transparent #5a4d5b transparent transparent}");
GM_addStyle(".corner-rating.corner-rating-3 {border-color: transparent #6b536b transparent transparent}");
GM_addStyle(".corner-rating.corner-rating-4 {border-color: transparent #7c4a7c transparent transparent}");
GM_addStyle(".corner-rating.corner-rating-5 {border-color: transparent #8c4589 transparent transparent}");
GM_addStyle(".corner-rating.corner-rating-6 {border-color: transparent #9b3f97 transparent transparent}");
GM_addStyle(".corner-rating.corner-rating-7 {border-color: transparent #a83aa3 transparent transparent}");
GM_addStyle(".corner-rating.corner-rating-8 {border-color: transparent #b836af transparent transparent}");
GM_addStyle(".corner-rating.corner-rating-9 {border-color: transparent #c631bb transparent transparent}");
GM_addStyle(".corner-rating.corner-rating-10 {border-color: transparent #d22fc9 transparent transparent}");