mirror of https://github.com/dani/vroom.git
Video conf based on SimpleWebRTC https://vroom.fws.fr/documentation
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
413 B
20 lines
413 B
11 years ago
|
{
|
||
|
"name": "Screen sharing for VROOM",
|
||
|
"description": "Allow screen sharing in the VROOM WebRTC visio conference app",
|
||
|
"version": "0.0.1",
|
||
|
"manifest_version": 2,
|
||
|
"minimum_chrome_version": "34",
|
||
|
"icons": {
|
||
|
},
|
||
|
"permissions": [
|
||
|
"desktopCapture"
|
||
|
],
|
||
|
"background": {
|
||
|
"scripts": ["background.js"]
|
||
|
},
|
||
|
"content_scripts": [ {
|
||
|
"js": [ "content.js" ],
|
||
|
"matches": ["https://*/*"]
|
||
|
}]
|
||
|
}
|