28 lines
497 B
JSON
28 lines
497 B
JSON
{
|
|
"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",
|
|
"content.js"
|
|
]
|
|
}
|
|
],
|
|
"permissions": [],
|
|
"background": {
|
|
"scripts": [
|
|
"browser-polyfill.js",
|
|
"background.js"
|
|
]
|
|
},
|
|
"page_action": {
|
|
"default_title": "a page action"
|
|
}
|
|
}
|