GM addStyle: Difference between revisions
From GreaseSpot Wiki
Jump to navigationJump to search
mNo edit summary |
m →Syntax: Lost but not forgotten ;D |
||
Line 16: | Line 16: | ||
:Value: Function | :Value: Function | ||
:Returns: Nothing | :Returns: Nothing | ||
:Compatibility: Greasemonkey 0.6+ | :Compatibility: [[Version_history#0.6.1|Greasemonkey 0.6.1+]] | ||
:{| border="1" cellpadding="5" | :{| border="1" cellpadding="5" |
Revision as of 12:07, 7 December 2007
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 }");