Skip to content

Instantly share code, notes, and snippets.

View silviapfeiffer's full-sized avatar

Silvia Pfeiffer silviapfeiffer

View GitHub Profile
// ==UserScript==
// @include http://*/*
// @include https://*/*
// ==/UserScript==
//applies a "main-content" style to the first top-level element that isn't
//a header, nav, aside or footer
var style = document.createElement('style');
style.innerHTML = ".main-content {outline: 5px dotted deeppink !important;}"