2024-11-30 20:08:13 -08:00
|
|
|
// ==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;
|
|
|
|
}
|
|
|
|
`;
|
2024-11-30 20:09:09 -08:00
|
|
|
document.body.appendChild(style);
|