electron/spec/fixtures/extensions/lazy-background-page/manifest.json

17 lines
304 B
JSON

{
"name": "lazy-background-page",
"version": "1.0",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.js"],
"run_at": "document_start"
}
],
"manifest_version": 2
}