Inspect and view changes in Screenshare Extension source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Screenshare Extension",
"author": "Hybotic",
"version": "0.0.7",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "Chrome Extension granting WebRTC screen capturing capabilities to meetings.",
"homepage_url": "https://hybotic.com/",
"background": {
"scripts": [
"background-script.js"
],
"persistent": true
},
"externally_connectable": {
"matches": [
"*://81.12.18.113/*"
]
},
"icons": {
"48": "icon.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
}