19 lines
476 B
JavaScript
19 lines
476 B
JavaScript
|
// ==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);
|