Discord Theme Color

Sets the Discord theme color to allow better title bar looking in PWA mode

  1. // ==UserScript==
  2. // @name Discord Theme Color
  3. // @namespace Violentmonkey Scripts
  4. // @match https://discordapp.com/*
  5. // @match https://discord.com/*
  6. // @grant none
  7. // @version 1.01
  8. // @author Akaza
  9. // @description Sets the Discord theme color to allow better title bar looking in PWA mode
  10. // ==/UserScript==
  11.  
  12. var metaTag=document.createElement('meta');
  13. metaTag.name = "theme-color"
  14. metaTag.content = "#202225"
  15. document.getElementsByTagName('head')[0].appendChild(metaTag);