Disable download button for Google Chrome?

后端 未结 11 1519
离开以前
离开以前 2020-11-30 20:03

Google Chrome is now shipping with a download button for videos that are just embedded videos (i.e. not MSE):

\"Cana

11条回答
  •  Happy的楠姐
    2020-11-30 20:43

    I using following JavaScript snippet which is working very well:

    document.querySelectorAll("video[id^=media-player]").forEach((elem) => elem.controlsList.add("nodownload"));
    

    Example: www.ring-cafe-finsterwalde.de/archiv/archiv.html#archiv4

提交回复
热议问题