I downloaded the chrome extension code of OpenVidu’s screen sharing from Github. For testing in my localhost, I loaded the folder directly without hosting and I followed every step related to it . But when I tried to do screen share, I got this error Denying load of chrome-extension://ijhbhlgibejmmlaepkhginkedcgochkh/icon.png
{
“name” : “MD ScreenSharing”,
“author”: “MD”,
“version” : “1.0.1”,
“manifest_version” : 2,
“minimum_chrome_version”: “34”,
“description” : “Screen sharing extension”,
“homepage_url”: “http://openvidu.io”,
“background”: {
“scripts”: [“background.js”],
“persistent”: false
},
“content_scripts”: [ {
“js”: [“script.js”],
“all_frames”: true,
“run_at”: “document_end”,
“matches”: [“http://localhost:4200/”]
}],
“icons”: {
“16”: “icon16.png”,
“48”: “icon48.png”,
“128”: “icon128.png”
},
“permissions”: [
“desktopCapture”
],
“web_accessible_resources”: [
“icon16.png”,
“icon48.png”,
“icon128.png”
]
}