I'm new to developing chrome extensions. But this is a problem I faced while trying to make an extension which can read QR codes with a webcam. For that I need to capture an image with CamCanvas.swf.
<body>
<div class="container">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" name="iembedflash" width="320" height="240" align="absmiddle" id="iembedflash">
<param name="movie" value="camcanvas.swf" />
<param name="quality" value="high" />
<param name="allowScriptAccess" value="always" />
<embed src="camcanvas.swf" width="320" height="240" align="absmiddle" allowScriptAccess="always" id="embedflash" quality="high" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" mayscript="true" name="iembedflash" />
</object>
</div>
<button>Capture</button>
<br>
<canvas id="qr-canvas" width="320" height="240"></canvas>
</body>
I have another JavaScript file to capture the button click and call the ccCapture function of the swf file. This works just perfect in the local server.
I guessed that this is an error due to the Content Security Policy of chrome.
I have no idea on how to create an npapi plugin for that, and I need some serious help if I am to sandbox the flash file.