GM addStyle

From GreaseSpot Wiki
Revision as of 05:38, 7 December 2007 by Marti (talk | contribs) (→‎Syntax)
Jump to navigationJump to search

Template:Underscore


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>.

Examples | Notes

Syntax

GM_addStyle( css )

Value: Function
Returns: Nothing
Compatibility: Greasemonkey 0.6+
Parameters
Properties
css
  • All properties are optional except css.

top

Properties


css

Value: String
Usage: css = "body { color:red }";

top | back

Examples

GM_addStyle("body { color:white; background-color:black } img { border:0 }");

top

Notes

top