Skip to content

Instantly share code, notes, and snippets.

@xiupos
Created April 12, 2024 08:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xiupos/f7d86dacb3ecb316a586a86aa2fa7e07 to your computer and use it in GitHub Desktop.
Save xiupos/f7d86dacb3ecb316a586a86aa2fa7e07 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Radio FM4 Player (WIP)
// @match https://fm4.orf.at/player/*
// @version 1
// @grant none
// ==/UserScript==
const themeColor = document.querySelector('meta[name="theme-color"]');
themeColor.setAttribute('content', '#000');
const root = document.documentElement;
root.style.colorScheme = "dark";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment