Greasy Fork 还支持 简体中文。

Disable Border Top Color 2

Disables border-top-color in the specified selector

  1. // ==UserScript==
  2. // @name Disable Border Top Color 2
  3. // @namespace your-namespace
  4. // @version 1.0
  5. // @description Disables border-top-color in the specified selector
  6. // @match https://vanced-youtube.neocities.org/2011/*
  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 disable border-top-color
  16. GM_addStyle('.gbz0l .gbtb2 { border-top-color: transparent !important; }');
  17. })();