Change Color on Vanced YouTube apt 3

Changes color on Vanced YouTube website.

  1. // ==UserScript==
  2. // @name Change Color on Vanced YouTube apt 3
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Changes color on Vanced YouTube website.
  6. // @author You
  7. // @match https://vanced-youtube.neocities.org/2011/
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Create a custom style to replace the color
  15. var customStyle = `
  16. .ftl, #footer a {
  17. color: #666 !important;
  18. }
  19. `;
  20.  
  21. // Add the custom style to the document
  22. GM_addStyle(customStyle);
  23. })();