GM addStyle: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
m (→‎Syntax: swap to JavaScript return type)
No edit summary
(23 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{underscore|title=GM_addStyle}}
As of Greasemonkey 4.0, this method has been removed.
__NOTOC__
{{Greasemonkey Manual TOC}}


== Description ==
<!-- TODO: When it exists, link to the compatibility polyfill docs. -->
 
This [[API_reference|API]] method adds a string of CSS to the document.
 
It creates a new <code><style></code> element, adds the given CSS to it, and inserts it into the <code><head></code>.
 
[[#Examples|Examples]] | [[#Notes|Notes]]
 
== Syntax ==
 
'''GM_addStyle(''' ''css'' ''')'''
 
:Value: Function
:Returns: undefined
:Compatibility: [[Version_history#0.6.1|Greasemonkey 0.6.1+]]
 
:{| cellpadding="5" style="border-style:solid; background:#FFFFE0;"
|+ Parameters
!style="background:#CC9900;"|'''Properties'''
|-
| <code><span style="background:#FFFFE0;">[[#css |css]]</span></code>
|}
:* All properties are optional except [[#css|css]].
 
[[#top|top]]
=== Properties ===
----
==== <code>css</code> ====
:Value: String
:Usage: <code>'''css''' = "body { color:red }";</code>
 
[[#top|top]] | [[#Syntax|back]]''
 
== Examples ==
<code><pre>
GM_addStyle("body { color:white; background-color:black } img { border:0 }");
</pre></code>
 
[[#top|top]]
 
== Notes ==
Add <code>!important</code> at the end of the code to override an existing value.
 
[[#top|top]]
 
[[Category:API_Reference|A]]

Revision as of 15:00, 3 November 2017

As of Greasemonkey 4.0, this method has been removed.