Add script.user.js

This commit is contained in:
Nova Cat 2024-11-30 20:08:13 -08:00
parent 03f87938f0
commit f962d6ddbb

19
script.user.js Normal file
View file

@ -0,0 +1,19 @@
// ==UserScript==
// @name PythonAnyDark
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Darkmode for PythonAnywhere dashboard
// @author Swee
// @match *://www.pythonanywhere.com/*
// @grant none
// @run-at document-body
// ==/UserScript==
const style = document.createElement("style");
style.innerHTML = `
body {
background: #0f161c !important;
color: white;
}
`;
document.body.insertAdjacentElement(style);