48 lines
1.4 KiB
JSON
Executable File
48 lines
1.4 KiB
JSON
Executable File
{
|
|
"name":"WebRTC Desktop Sharing",
|
|
"author":"Muaz Khan",
|
|
"version":"3.9",
|
|
"manifest_version":2,
|
|
"minimum_chrome_version":"34",
|
|
"description":"WebRTC based P2P HQ/HD screen sharing. Share audio+tab or any application's screen. Even share full/entire screen.",
|
|
"homepage_url":"https://github.com/muaz-khan/Chrome-Extensions/tree/master/desktopCapture-p2p",
|
|
"background":{
|
|
"scripts":[
|
|
"socket.io.js",
|
|
"bower_components/kurento-utils/js/kurento-utils.js",
|
|
"RTCMultiConnection.js",
|
|
"CodecsHandler.js",
|
|
"IceServersHandler.js",
|
|
"MultiStreamsMixer.js",
|
|
"desktop-capturing.js"
|
|
],
|
|
"persistent":false
|
|
},
|
|
"browser_action":{
|
|
"default_icon":"images/desktopCapture22.png",
|
|
"default_title":"Share Your Screen",
|
|
"default_popup": "dropdown.html"
|
|
},
|
|
"icons":{
|
|
"16":"images/desktopCapture16.png",
|
|
"22":"images/desktopCapture22.png",
|
|
"32":"images/desktopCapture32.png",
|
|
"48":"images/desktopCapture48.png",
|
|
"128":"images/desktopCapture128.png"
|
|
},
|
|
"permissions":[
|
|
"desktopCapture",
|
|
"storage",
|
|
"tabs",
|
|
"<all_urls>",
|
|
"activeTab",
|
|
"tabCapture"
|
|
],
|
|
"web_accessible_resources":[
|
|
"images/desktopCapture48.png"
|
|
],
|
|
"options_ui":{
|
|
"page":"options.html",
|
|
"chrome_style":true
|
|
}
|
|
} |