Change Color in Element fix

Changes color in specified element on sites including a specific URL

  1. // ==UserScript==
  2. // @name Change Color in Element fix
  3. // @namespace your-namespace
  4. // @version 1.0
  5. // @description Changes color in specified element 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('div[aria-label="refinement"][role="tab"].gsc-tabHeader.gsc-inline-block.gsc-tabhActive { color: #dd4b39 !important; }');
  16. })();