Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Browser action docs use incorrect property name in sample manifest #871

Merged
merged 2 commits into from
Jun 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions site/en/docs/extensions/reference/browserAction/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ browser action. A popup is below the icon.

![](browser-action.png)

If you want to create an icon that isn't always visible, use a [page action][1] instead of a browser
If you want to create an icon that isn't always active, use a [page action][1] instead of a browser
action.

## Manifest
Expand All @@ -18,7 +18,7 @@ Register your browser action in the [extension manifest][2] like this:
{
"name": "My extension",
...
"action": {
"browser_action": {
"default_icon": { // optional
"16": "images/icon16.png", // optional
"24": "images/icon24.png", // optional
Expand Down