WebRoom.net screenshare
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": "WebRoom.net screenshare",
"version": "1.0.0",
"manifest_version": 2,
"description": "WebRoom.net screenshare",
"minimum_chrome_version": "34",
"homepage_url": "https://webroom.net",
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"permissions": [
"desktopCapture",
"tabs",
"https://*.webroom.net/*"
],
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https://*.webroom.net/*"
]
}
],
"externally_connectable": {
"matches": [
"https://*.webroom.net/*"
]
}
}