Files
browser-cli/extension/manifest.json
T
daniel156161 edf9056430
Package Extension / package-extension (push) Successful in 17s
Build & Publish Package / publish (push) Successful in 29s
Testing / test (push) Failing after 26s
show mute status correctly when tab mute and add to get single tab status
2026-04-13 21:35:25 +02:00

33 lines
677 B
JSON

{
"manifest_version": 3,
"name": "browser-cli",
"version": "0.5.12",
"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"
}
}
}