Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "DualWield Audio",
"version": "1.0.1",
"description": "Play audio from two Chrome tabs, one in each ear.",
"permissions": [
"tabs",
"tabCapture",
"activeTab",
"storage",
"scripting",
"offscreen",
"notifications",
"downloads"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+D",
"mac": "Command+Shift+D"
},
"description": "Open DualWield popup"
},
"swap-all": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Swap all audio sources between ears"
},
"add-to-left": {
"suggested_key": {
"default": "Ctrl+Shift+Left",
"mac": "Command+Shift+Left"
},
"description": "Add current tab to LEFT ear"
},
"add-to-right": {
"suggested_key": {
"default": "Ctrl+Shift+Right",
"mac": "Command+Shift+Right"
},
"description": "Add current tab to RIGHT ear"
}
},
"web_accessible_resources": [
{
"resources": [
"background_blank.png"
],
"matches": [
"<all_urls>"
]
}
]
}