Files
webextensions-examples/page-to-extension-messaging/manifest.json
2016-01-14 12:02:44 -08:00

27 lines
798 B
JSON

{
"manifest_version": 2,
"name": "Page to extension messaging",
"description": "Visit https://mdn.github.io/webextensions-examples/content-script-page-script-messaging.html for the demo. See https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Examples#page-to-extension-messaging",
"version": "1.0",
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/page-to-extension-messaging",
"icons": {
"48": "icons/message-48.png"
},
"applications": {
"gecko": {
"id": "page-to-extension-messaging@mozilla.org",
"strict_min_version": "45.0.0"
}
},
"content_scripts": [
{
"matches": ["https://mdn.github.io/webextensions-examples/content-script-page-script-messaging.html"],
"js": ["content-script.js"]
}
]
}