25 lines
436 B
JSON
25 lines
436 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"
|
||
|
]
|
||
|
}
|
||
|
}
|