webextension-polyfill/test/fixtures/tabs-sendmessage-extension/manifest.json

26 lines
433 B
JSON

{
"manifest_version": 2,
"name": "test-tabs-sendmessage",
"version": "0.1",
"description": "test-tabs-sendmessage",
"content_scripts": [
{
"matches": [
"http://localhost/*"
],
"js": [
"browser-polyfill.js",
"tape.js",
"content.js"
]
}
],
"permissions": [],
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
]
}
}