Change Border Bottom Color fix 3

Changes border-bottom color in specified selector on sites including a specific URL

  1. // ==UserScript==
  2. // @name Change Border Bottom Color fix 3
  3. // @namespace your-namespace
  4. // @version 1.0
  5. // @description Changes border-bottom 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. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Add custom CSS to change border-bottom color
  16. GM_addStyle('.gsc-tabHeader.gsc-inline-block.gsc-tabhActive { border-bottom: 3px solid #dd4b39 !important; }');
  17. })();