Created
October 15, 2021 06:27
-
-
Save xoquox/f85151faa9beccf81eff640c1d80e24b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Conexio Stettfeld | |
// @version 1.0 | |
// @description Better Conexio | |
// @match http://bbodwfpdb57wipmt.myfritz.net/* | |
// @run-at document-start | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
function addCss(cssString) { | |
var head = document.getElementsByTagName('head')[0]; | |
var newCss = document.createElement('style'); | |
newCss.type = "text/css"; | |
newCss.innerHTML = cssString; | |
head.appendChild(newCss); | |
} | |
addCss(` | |
div#schema { position: relative; } | |
div#S1 { position: absolute; left: 330px !important; top: 100px !important; } | |
div#S2 { position: absolute; left: 400px !important; top: 330px !important; } | |
div#HE3 { display: none !important; } | |
`); | |
// Your code here... | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment