Files
webextensions-examples/annotate-page/manifest.json
wbamberg 0c5b1ec028 Added sidebar example (#192)
* Added sidebar example

* Remove blank line
2017-03-03 21:15:15 -08:00

22 lines
425 B
JSON

{
"manifest_version": 2,
"name": "Web page annotator",
"description": "Displays a sidebar that lets you take notes on web pages.",
"version": "1.0",
"applications": {
"gecko": {
"strict_min_version": "54.0a1"
}
},
"sidebar_action": {
"default_icon": "icons/star.png",
"default_title" : "Annotator",
"default_panel": "sidebar/panel.html"
},
"permissions": ["storage", "tabs"]
}