Files
browser-cli/extension/manifest.json
T
2026-04-08 21:17:59 +02:00

23 lines
439 B
JSON

{
"manifest_version": 3,
"name": "browser-cli",
"version": "0.1.0",
"description": "Control your browser from the terminal via browser-cli",
"permissions": [
"tabs",
"tabGroups",
"scripting",
"windows",
"storage",
"alarms",
"nativeMessaging"
],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "browser-cli"
}
}