1c5fd0ffee
Navigation: open-wait (open + block until loaded) DOM: key, hover, check/uncheck, clear, focus, submit, poll, scroll, select, eval, wait-for Tabs: pin/unpin, screenshot, watch-url (block until URL matches regex) New command groups: page info, storage get/set, cookies list/get/set Extension: add cookies permission
34 lines
691 B
JSON
34 lines
691 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "browser-cli",
|
|
"version": "0.6.0",
|
|
"description": "Control your browser from the terminal via browser-cli",
|
|
"permissions": [
|
|
"tabs",
|
|
"tabGroups",
|
|
"scripting",
|
|
"windows",
|
|
"storage",
|
|
"alarms",
|
|
"nativeMessaging",
|
|
"cookies"
|
|
],
|
|
"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"
|
|
}
|
|
}
|
|
}
|