GM addStyle
From GreaseSpot Wiki
Syntax
GM_addStyle( css )
Description
Adds a string of CSS to the document.
Creates a new <style>
element, adds the given CSS to it, and inserts it into the <head>
.
Examples
GM_addStyle("body { color:red; }");