Files
browser-cli/extension/manifest.json
T
daniel156161 6979f2ef30
Build & Publish Package / publish (push) Successful in 27s
Package Extension / package-extension (push) Failing after 10m17s
allow to rename the profile without a browser restart and remove old sockets and registry entry when browser closes
2026-04-10 12:02:14 +02:00

33 lines
676 B
JSON

{
"manifest_version": 3,
"name": "browser-cli",
"version": "0.5.2",
"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"
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"action": {
"default_title": "browser-cli",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png"
}
}
}