electron/spec/fixtures/extensions/content-script/manifest.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
402 B
JSON
Raw Normal View History

{
"name": "content-script-test",
"version": "1.0",
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["all_frames-enabled.css"],
"run_at": "document_start",
"all_frames": true
},
{
"matches": ["<all_urls>"],
"css": ["all_frames-disabled.css"],
"run_at": "document_start",
"all_frames": false
}
],
"manifest_version": 2
}