Google Chrome does not request flash content using swfobject.js

I have many old partial content websites that I initialize with the swfobjects library. The problem is that Chrome doesnโ€™t even ask for permission to flash, pages work because they donโ€™t have any flash objects. I use the latest Chrome Canary , but the same problem in the latest Chrome too.

An example site with a large flash banner, and this is the only meaningful content: sahinkomur.com.tr

EDIT: found solution on git: github.com/swfobject/swfobject/issues/57

if(window.chrome)
    swfobject.ua.pv = [100, 0, 0];

swfobject.embedSWF(...);
+6
source share

Source: https://habr.com/ru/post/1016775/


All Articles