Inspect and view changes in HelloScreen Screen Sharing 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": "HelloScreen Screen Sharing for Chrome",
"version": "2025.4.4",
"description": "Instant, multi-cursor screen sharing for Chrome.",
"manifest_version": 3,
"author": "helloscreen.com",
"permissions": [
"tabs",
"storage"
],
"action": {
"default_popup": "popup.html",
"default_title": "Share this tab"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"injection.js",
"upscope.js",
"pdf.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"icons": {
"16": "images/icon/not_active_light_16.png",
"48": "images/icon/not_active_light_48.png",
"128": "images/icon/not_active_light_128.png"
},
"web_accessible_resources": [
{
"resources": [
"pdf.worker.mjs",
"pdf.css",
"locales/*.yml"
],
"matches": [
"<all_urls>"
]
}
]
}