Odoo18-Base/addons/mail/push-to-talk-extension/manifest.json

45 lines
1014 B
JSON
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
{
"manifest_version": 3,
"name": "Discuss Push-to-talk",
"description": "Empowers Odoo Discuss with system-wide Push-to-Talk",
"version": "1.0.0.2",
"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"
}
},
"externally_connectable": {
"matches": [
"<all_urls>"
]
}
}