mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 14:59:12 +02:00
28 lines
406 B
JSON
28 lines
406 B
JSON
{
|
|
|
|
"manifest_version": 2,
|
|
"name": "Beastify",
|
|
"version": "1.0",
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "beastify@mozilla.org"
|
|
}
|
|
},
|
|
|
|
"permissions": [
|
|
"activeTab"
|
|
],
|
|
|
|
"browser_action": {
|
|
"default_icon": "button/beasts.png",
|
|
"default_title": "Beastify",
|
|
"default_popup": "popup/choose_beast.html"
|
|
},
|
|
|
|
"web_accessible_resources": [
|
|
"beasts/*.jpg"
|
|
]
|
|
|
|
}
|