2017-10-23 17:42:01 +00:00
|
|
|
{
|
|
|
|
"manifest_version": 2,
|
|
|
|
"name": "test-extension-runtime-messaging",
|
|
|
|
"version": "0.1",
|
|
|
|
"description": "test-extension-runtime-messaging",
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": [
|
|
|
|
"http://localhost/*"
|
|
|
|
],
|
|
|
|
"js": [
|
|
|
|
"browser-polyfill.js",
|
2018-05-10 21:55:05 +00:00
|
|
|
"tape.js",
|
2017-10-23 17:42:01 +00:00
|
|
|
"content.js"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"permissions": [],
|
|
|
|
"background": {
|
|
|
|
"scripts": [
|
|
|
|
"browser-polyfill.js",
|
|
|
|
"background.js"
|
|
|
|
]
|
2018-03-13 13:16:09 +00:00
|
|
|
},
|
|
|
|
"page_action": {
|
|
|
|
"default_title": "a page action"
|
2017-10-23 17:42:01 +00:00
|
|
|
}
|
|
|
|
}
|