electron/spec-main/fixtures/extensions/lazy-background-page/manifest.json
2020-01-13 14:55:58 -08:00

16 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
}