Change Color in Selector 2

Changes color in specified selector on sites including a specific URL

  1. // ==UserScript==
  2. // @name Change Color in Selector 2
  3. // @namespace your-namespace
  4. // @version 1.0
  5. // @description Changes color in specified selector on sites including a specific URL
  6. // @match *://vanced-youtube.neocities.org/2015/*
  7. // @run-at document-end
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Add custom CSS to change color
  15. GM_addStyle('.gsc-tabHeader.gsc-tabhActive { color: #dd4b39 !important; }');
  16. })();