mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
22 lines
828 B
Markdown
22 lines
828 B
Markdown
# apply-css
|
|
|
|
**This add-on injects CSS into web pages. The `addons.mozilla.org` domain disallows this operation, so this add-on will not work properly when it's run on pages in the `addons.mozilla.org` domain.**
|
|
|
|
## What it does
|
|
|
|
This extension includes:
|
|
|
|
* a background script, "background.js"
|
|
* a page action
|
|
|
|
It adds the [page action](https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/pageAction)
|
|
to every tab the user opens. Clicking the page action
|
|
for a tab applies some CSS using [tabs.insertCSS](https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/API/tabs/insertCSS).
|
|
|
|
Clicking again removes the CSS using [tabs.removeCSS](https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/API/tabs/removeCSS).
|
|
|
|
## What it shows
|
|
|
|
* some basic page action functions
|
|
* how to apply and remove CSS.
|