mail/push-to-talk-extension/manifest.json
Воробьев Данил Сергеевич 800d0cadc7 odoo changed to talisman
2024-05-08 11:31:09 +03:00

40 lines
921 B
JSON

{
"manifest_version": 3,
"name": "Discuss Push-to-talk",
"description": "EmpowersTalismanDiscuss with system-wide Push-to-Talk",
"version": "1.0.0.1",
"permissions": [
"storage"
],
"action": {},
"background": {
"service_worker": "background.js",
"type": "module"
},
"icons": {
"128": "assets/icons/inactive_icon.png"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"commands": {
"ptt-pressed": {
"suggested_key": "Alt+Shift+Y",
"description": "Push-to-Talk"
},
"toggle-voice": {
"suggested_key": "Alt+Shift+U",
"description": "Voice Toggle"
}
}
}