How to hide three-dots button of chrome video player in version 70+ How to hide three-dots button of chrome video player in version 70+ google-chrome google-chrome

How to hide three-dots button of chrome video player in version 70+


Hello this is the way I solve the issue, in my case I used blueimp-gallery for a video carousel were video tags are created dynamically by the library, I just added:

$('video').each(function (index) {      $(this).attr("disablepictureinpicture", true);});

But if you have static video tag just do this:

<video width="100%" controls disablepictureinpicture controlslist="nodownload">

Original answer you may find it here.