Old YouTube Rating Colours

Makes the rating bar and thumbs have the original red & green look.

目前為 2015-09-23 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Old YouTube Rating Colours
// @namespace    http://kippykip.x10.mx/
// @version      1.0
// @description  Makes the rating bar and thumbs have the original red & green look.
// @author       Kippykip
// @match        https://*.youtube.com/watch*
// @grant        none
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

//Rating bar
addGlobalStyle('.video-extras-sparkbar-likes{float:left;height:2px;background: #00BB00 !important;}');
addGlobalStyle('.video-extras-sparkbar-dislikes{float:left;height:2px;background: #BB0000 !important;}');
addGlobalStyle('.like-button-renderer-like-button.yt-uix-button-toggled .yt-uix-button-content{color: #00BB00}');
addGlobalStyle('.like-button-renderer-like-button.yt-uix-button.yt-uix-button-toggled:before{background:no-repeat url(//i.imgur.com/purOUgL.png) -299px -44px;background-size:auto;width:20px;height:20px}');
addGlobalStyle('.like-button-renderer-like-button:active .yt-uix-button-content,.like-button-renderer-like-button.yt-uix-button-toggled .yt-uix-button-content{color:#00CC00}');
addGlobalStyle('.like-button-renderer-like-button.yt-uix-button:active:before,.like-button-renderer-like-button.yt-uix-button.yt-uix-button-toggled:before{background:no-repeat url(//i.imgur.com/purOUgL.png) -299px -44px;background-size:auto;width:20px;height:20px}');

//Uncomment for red dislike button on the dislike thumb, however it will always be red! :(
//addGlobalStyle('.like-button-renderer-dislike-button:before{background:no-repeat url(//i.imgur.com/2zFI0q0.png) -113px -83px;background-size:auto;width:20px;height:20px;padding-bottom:1px}');

//Comments!
addGlobalStyle('.comments .like-count{margin-right:8px;color:#00BB00;font-size:9pt;vertical-align:top}');
addGlobalStyle('.comments .sprite_like_on{display:none;background:no-repeat url(//i.imgur.com/ynVNO87.png) 0 -144px;background-size:auto;width:14px;height:14px}');
addGlobalStyle('.comments .sprite_dislike_on{display:none;background:no-repeat url(//i.imgur.com/ynVNO87.png) 0 -53px;background-size:auto;width:14px;height:14px}');

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址