mail/push-to-talk-extension/manifest.json

40 lines
919 B
JSON
Raw Normal View History

2024-05-03 12:40:35 +03:00
{
"manifest_version": 3,
"name": "Discuss Push-to-talk",
"description": "Empowers Odoo Discuss 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"
}
}
}