mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
31 lines
719 B
JSON
31 lines
719 B
JSON
{
|
|
|
|
"description": "Adds a browser action icon to the toolbar. Click the button to choose a beast. The active tab's body content is then replaced with a picture of the chosen beast. See https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Examples#beastify",
|
|
"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/frog.jpg",
|
|
"beasts/turtle.jpg",
|
|
"beasts/snake.jpg"
|
|
]
|
|
|
|
}
|