Inspect and view changes in 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": "Screen Sharing",
"author": "Emmanuel Joseph Perion",
"version": "1.4",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "Capture full-screen or specific application's screen.",
"homepage_url": "https://webrtc.ziotes.com/",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"https://webrtc.ziotes.com/*",
"https://localhost/*",
"https://engducate.com/*",
"https://ko.engducate.com/*"
]
}
],
"icons": {
"48": "icon.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
}