Inspect and view changes in Talk for chrome 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": "Talk for chrome",
"author": "Phando",
"version": "1.0.8",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "Share your desktop, documents, PDFs, slideshows, and more with others in the conference",
"homepage_url": "http://www.phando.com",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"https://*.phando.com/*",
"https://talk.phando.com/*",
"https://meet.phando.com/*",
"https://openvidu.github.io/openvidu-screen-sharing-chrome-extension/*"
]
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon16.png",
"icon48.png",
"icon128.png"
]
}