GM addStyle: Difference between revisions
From GreaseSpot Wiki
Jump to navigationJump to search
ProphetOfDOM (talk | contribs) No edit summary |
m Added Greasemonkey Manual TOC widget |
||
Line 1: | Line 1: | ||
{{underscore|title=GM_addStyle}} | {{underscore|title=GM_addStyle}} | ||
__NOTOC__ | __NOTOC__ | ||
{{Greasemonkey Manual TOC}} | |||
== Description == | == Description == |
Revision as of 22:18, 30 December 2008
Greasemonkey Manual |
Using Greasemonkey |
---|
Installing Scripts |
Monkey Menu |
Getting Help |
User Script Authoring |
Editing |
Environment |
API |
Description
This API method adds a string of CSS to the document.
It creates a new <style>
element, adds the given CSS to it, and inserts it into the <head>
.
Syntax
GM_addStyle( css )
- Value: Function
- Returns: Nothing
- Compatibility: Greasemonkey 0.6.1+
Parameters Properties css
- All properties are optional except css.
Properties
css
- Value: String
- Usage:
css = "body { color:red }";
Examples
GM_addStyle("body { color:white; background-color:black } img { border:0 }");
Notes
Add !important
at the end of the code to override an existing value.