Skip to content

Instantly share code, notes, and snippets.

@xoquox
Created October 15, 2021 06:27
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 xoquox/f85151faa9beccf81eff640c1d80e24b to your computer and use it in GitHub Desktop.
Save xoquox/f85151faa9beccf81eff640c1d80e24b to your computer and use it in GitHub Desktop.
// ==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