This Firefox extension is meant to allow VisuWell / WeCounsel sites to enable camera pan-tilt-zoom control during WebRTC sessions.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Video Health Services PTZ Camera Control",
"author": "Wecounsel Solutions, LLC",
"version": "0.0.6",
"manifest_version": 2,
"description": "This Firefox extension is meant to allow VisuWell / WeCounsel sites to enable camera pan-tilt-zoom control during WebRTC sessions.",
"homepage_url": "https://wecounsel.com/",
"background": {
"scripts": [
"main.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "54.0"
}
},
"icons": {
"16": "logo16.png",
"48": "logo48.png",
"128": "logo128.png"
},
"permissions": [
"activeTab",
"nativeMessaging"
]
}