Extension to allow screen sharing in Video CC applications.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"minimum_chrome_version": "34",
"name": "Video Conferencing Screen Sharing",
"permissions": [
"desktopCapture"
],
"short_name": "Screen sharing for VideoCC",
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "0.0.6",
"background": {
"persistent": true,
"scripts": [
"background.js"
]
},
"description": "Extension to allow screen sharing in Video CC applications.",
"externally_connectable": {
"matches": [
"*://*.mera.ru/*",
"*://*.merann.ru/*",
"*://192.168.40.217/*",
"*://192.168.40.218/*",
"*://192.168.40.219/*",
"*://192.168.40.216/*",
"*://192.168.40.215/*",
"*://192.168.40.220/*",
"*://192.168.40.221/*",
"*://192.168.40.222/*",
"*://*.compute.amazonaws.com/*"
]
},
"icons": {
"16": "vcc_icon_16.png",
"48": "vcc_icon_48.png",
"128": "vcc_icon_128.png"
},
"browser_action": {
"default_icon": "vcc_icon_48.png"
}
}