Google Chrome is now shipping with a download button for videos that are just embedded videos (i.e. not MSE):
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(); };