Disable Border Top Color

Disables border-top-color in the specified element

  1. // ==UserScript==
  2. // @name Disable Border Top Color
  3. // @namespace your-namespace
  4. // @version 1.0
  5. // @description Disables border-top-color in the specified element
  6. // @match https://vanced-youtube.neocities.org/2011/*
  7. // @run-at document-end
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Add custom CSS to disable border-top-color
  15. GM_addStyle('.gbtb2 { border-top-color: transparent !important; }');
  16. })();