Inspect and view changes in WebRTC Screen Sharing 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": "WebRTC Screen Sharing",
"author": "WebRTC, Inc.",
"version": "2.3",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "This Chrome extension is developed primary for http://tokbox.com/. It doesn't do anything except capture content of your screen.",
"homepage_url": "http://tokbox.com/",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"externally_connectable": {
"matches": [
"https://52.41.153.108/*"
]
},
"icons": {
"16": "logo16.png",
"48": "logo48.png",
"128": "logo128.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
}