mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 06:48:37 +02:00
31 lines
477 B
JSON
31 lines
477 B
JSON
{
|
|
|
|
"manifest_version": 2,
|
|
"name": "Beastify",
|
|
"version": "1.0",
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "beastify@mozilla.org"
|
|
}
|
|
},
|
|
|
|
"permissions": [
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
|
|
"browser_action": {
|
|
"default_icon": "button/beasts.png",
|
|
"default_title": "Beastify",
|
|
"default_popup": "popup/choose_beast.html"
|
|
},
|
|
|
|
"web_accessible_resources": [
|
|
"beasts/frog.jpg",
|
|
"beasts/turtle.jpg",
|
|
"beasts/snake.jpg"
|
|
]
|
|
|
|
}
|