mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-26 03:00:53 +02:00
19 lines
415 B
JSON
19 lines
415 B
JSON
{
|
|
"name": "Legacy Addon Name",
|
|
"version": "0.3.0",
|
|
"manifest_version": 2,
|
|
"permissions": ["storage"],
|
|
"browser_action": {
|
|
"browser_style": true,
|
|
"default_icon": "icons/icon-32.png",
|
|
"default_title": "button label",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "original-bootstrap-addon-id@mozilla.com",
|
|
"strict_min_version": "51.0a1"
|
|
}
|
|
}
|
|
}
|