Disable download button for Google Chrome?

后端 未结 11 1496
离开以前
离开以前 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条回答
  •  情深已故
    2020-11-30 20:51

    In addition to above answers you have to add following code to disable context menu:

    index.html: (globally)

    
    

    OR you can disable context menu for some element:

    element.oncontextmenu = function (e) {
        e.preventDefault();
    };
    

提交回复
热议问题