mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 14:59:12 +02:00
27 lines
507 B
JSON
27 lines
507 B
JSON
{
|
|
|
|
"description": "Adds browser action icon to toolbar to open packaged web page. See https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Examples#open-my-page-button",
|
|
"manifest_version": 2,
|
|
"name": "open-my-page",
|
|
"version": "1.0",
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "open-my-page-button@mozilla.org"
|
|
}
|
|
},
|
|
|
|
"permissions": [
|
|
"tabs"
|
|
],
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"browser_action": {
|
|
"default_icon": "button/beasts.png"
|
|
}
|
|
|
|
}
|