mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 23:08:33 +02:00
16 lines
333 B
JSON
16 lines
333 B
JSON
{
|
|
"name": "Legacy Addon Name",
|
|
"version": "0.2.0",
|
|
"manifest_version": 2,
|
|
"permissions": ["storage"],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"browser_action": {
|
|
"browser_style": true,
|
|
"default_icon": "icons/icon-32.png",
|
|
"default_title": "button label",
|
|
"default_popup": "popup.html"
|
|
}
|
|
}
|