electron/spec/fixtures/extensions/chrome-action-fail/manifest.json

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

19 lines
356 B
JSON
Raw Normal View History

{
"name": "Action popup demo",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["main.js"],
"run_at": "document_start"
}
],
"action": {
"default_title": "Click Me",
"default_popup": "popup.html"
}
}