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