mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
21 lines
522 B
JSON
21 lines
522 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",
|
|
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/open-my-page-button",
|
|
"icons": {
|
|
"48": "icons/page-48.png"
|
|
},
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"browser_action": {
|
|
"default_icon": "icons/page-32.png"
|
|
}
|
|
|
|
}
|