scripting.removeCSS()
Removes a CSS stylesheet injected by a call to scripting.insertCSS()
.
Note: This method is available in Manifest V3 or higher in Chrome and Firefox 101. In Safari and Firefox 102+, this method is also available in Manifest V2.
To use this API you must have the "scripting"
permission and permission for the page's URL, either explicitly as a host permission or using the activeTab permission.
This is an asynchronous function that returns a Promise
.
Syntax
await browser.scripting.removeCSS(
details
)
Parameters
-
details
-
An object describing the CSS to remove and where to remove it from. It contains the following properties:
css
Optional
-
string
. A string containing the CSS to inject. Either css
or files
must be specified and must match the stylesheet inserted through scripting.insertCSS()
.
files
Optional
-
array
of string
. The path of a CSS files to inject, relative to the extension's root directory. Either files
or css
must be specified and must match the stylesheet inserted through scripting.insertCSS()
.
origin
Optional
-
string
. The style origin for the injection, either USER
or AUTHOR
. Defaults to AUTHOR
. Must match the origin of the stylesheet inserted through scripting.insertCSS()
.
-
target
-
scripting.InjectionTarget
. Details specifying the target to remove the CSS from.
Return value
A Promise
that fulfills with no arguments when all the CSS is removed. If any error occurs, the promise is rejected. Attempts to remove non-existent stylesheets are ignored.
Examples
This example adds some CSS using scripting.insertCSS
, then removes it again when the user clicks a browser action:
browser.action.onClicked.addListener(async (tab) => {
try {
await browser.scripting.removeCSS({
target: {
tabId: tab.id,
},
css: "* { background: #c0ffee }",
});
} catch (err) {
console.error(`failed to remove CSS: ${err}`);
}
});
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
removeCSS |
88 |
88 |
102 |
? |
74 |
15.4 |
? |
? |
102 |
? |
15.4 |
? |
origin |
88 |
88 |
102 |
? |
74 |
No |
? |
? |
102 |
? |
No |
? |