mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-23 09:42:49 +02:00
41 lines
956 B
JSON
41 lines
956 B
JSON
{
|
|
"description": "Adds a browser action icon to the toolbar. Click the button to inject an in-page toolbar UI into the current webpage. See https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Examples#inpage-toolbar-ui",
|
|
"manifest_version": 2,
|
|
"name": "In Page Toolbar UI",
|
|
"version": "1.0",
|
|
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/inpage-toolbar-ui",
|
|
"icons": {
|
|
"48": "icons/48.png"
|
|
},
|
|
|
|
"permissions": [],
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"browser_action": {
|
|
"default_icon": "icons/32.png",
|
|
"default_title": "In Page Toolbar"
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"js": ["contentscript.js"],
|
|
"run_at": "document_idle",
|
|
"matches": ["<all_urls>"]
|
|
}
|
|
],
|
|
|
|
"web_accessible_resources": [
|
|
"toolbar/ui.html"
|
|
],
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "inpage-toolbar-ui@mozilla.org",
|
|
"strict_min_version": "46.0"
|
|
}
|
|
}
|
|
}
|