// ==UserScript== // @name Change Border Bottom Color fix 3 // @namespace your-namespace // @version 1.0 // @description Changes border-bottom color in specified selector on sites including a specific URL // @match *://vanced-youtube.neocities.org/2015/* // @run-at document-end // @grant GM_addStyle // @license MIT // @downloadURL https://update.greasyfork.icu/scripts/470720/Change%20Border%20Bottom%20Color%20fix%203.user.js // @updateURL https://update.greasyfork.icu/scripts/470720/Change%20Border%20Bottom%20Color%20fix%203.meta.js // ==/UserScript== (function() { 'use strict'; // Add custom CSS to change border-bottom color GM_addStyle('.gsc-tabHeader.gsc-inline-block.gsc-tabhActive { border-bottom: 3px solid #dd4b39 !important; }'); })();