Merge pull request #103 from wagesj45/codex/investigate-browser.notifications-undefined-error
Add notifications permission
This commit is contained in:
commit
83a718dcfa
2 changed files with 15 additions and 13 deletions
|
@ -126,6 +126,7 @@ Sortana requests the following Thunderbird permissions:
|
||||||
- `accountsRead` – list accounts and folders for move or copy actions.
|
- `accountsRead` – list accounts and folders for move or copy actions.
|
||||||
- `menus` – add context menu commands.
|
- `menus` – add context menu commands.
|
||||||
- `tabs` – open new tabs and query the active tab.
|
- `tabs` – open new tabs and query the active tab.
|
||||||
|
- `notifications` – display error notifications.
|
||||||
- `compose` – create reply and forward compose windows for matching rules.
|
- `compose` – create reply and forward compose windows for matching rules.
|
||||||
|
|
||||||
## Thunderbird Add-on Store Disclosures
|
## Thunderbird Add-on Store Disclosures
|
||||||
|
|
|
@ -32,17 +32,18 @@
|
||||||
"page": "options/options.html",
|
"page": "options/options.html",
|
||||||
"open_in_tab": true
|
"open_in_tab": true
|
||||||
},
|
},
|
||||||
"permissions": [
|
"permissions": [
|
||||||
"storage",
|
"storage",
|
||||||
"messagesRead",
|
"messagesRead",
|
||||||
"messagesMove",
|
"messagesMove",
|
||||||
"messagesUpdate",
|
"messagesUpdate",
|
||||||
"messagesTagsList",
|
"messagesTagsList",
|
||||||
"accountsRead",
|
"accountsRead",
|
||||||
"menus",
|
"menus",
|
||||||
"scripting",
|
"notifications",
|
||||||
"tabs",
|
"scripting",
|
||||||
"theme",
|
"tabs",
|
||||||
"compose"
|
"theme",
|
||||||
]
|
"compose"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue