Files
zn-ai/packages/electron-chrome-extensions/spec/fixtures/chrome-webNavigation/manifest.json
2025-11-15 22:41:50 +08:00

17 lines
303 B
JSON

{
"name": "chrome-webNavigation",
"version": "1.0",
"manifest_version": 2,
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content-script.js"],
"run_at": "document_start"
}
],
"background": {
"scripts": ["background.js"],
"persistent": true
}
}