CSS fixed to new youtube
当前为
// ==UserScript==
// @name FixRedYoutube
// @description CSS fixed to new youtube
// @include *://*.youtube.com*
// @grant GM_addStyle
// @version 1
// @namespace
// ==/UserScript==
console.log("Changed page: " + document.URL);
GM_addStyle ( "paper-button.ytd-subscribe-button-renderer {\
background: -webkit-linear-gradient(rgba(222, 114, 37, 1), rgb(17, 17, 17));\
background: -o-linear-gradient(rgba(222, 114, 37, 1), rgb(17, 17, 17));\
background: -moz-linear-gradient(rgba(222, 114, 37, 1), rgb(17, 17, 17));\
background: linear-gradient(rgba(222, 114, 37, 1), rgb(17, 17, 17) );\
}\
a.yt-simple-endpoint.yt-formatted-string {\
color: rgba(222, 114, 37, 1);\
}\
path#lozenge-path {\
fill: #ce2a22;\
}");