Arkadaşlar merhaba, bir çok filehost pop kullanıyor bunlara örnek openload, streamango, rapidvideo vs vs.. Bu popları kapatmanın bir yolu yok mudur ?
Ben aşağıdaki gibi bir kod buldum bunu </head> kodundan önce ekledim ama işe yaramadı ..

<script type="text/javascript">
var acceptablehosts = ["rapidvideo.com"];
function checkiz(list, uri) {
    var result = false;
    if(list.length == 0)
        return result;
    for(var i=0;i<list.length;i++) {
        if(uri.indexOf(list[i]) > 0) {
            result = true;
            break;
        }
    }
    return result;
}
$(function() {
    $(document).ready(function($) {
        $("iframe").each(function() {
            var link = $(this).attr('src');
            if(checkiz(acceptablehosts, link)) {
                $(this).attr('sandbox', 'allow-forms allow-pointer-lock allow-same-origin allow-scripts allow-top-navigation');
            }
        });
    });
});
</script>