>>139508If you know what's up it's actually not all that hard.
I'll try to explain what's happening and how to bypass as best as I can.
Firstly: What is actually blocking the download?
Here videos on the website are played with the use of html video Element which looks something like this:
<video id="myVideo" autoplay="" playsinline="" src="
http://example.com/meassurments.mp4" controls="" controlslist="nodownload"></video>
Notice I have removed the actual link to the video in the src attribute for privacy reasons.
The controlslist="nodownload" part is what is blocking the normal download option you would see (i.e. in Chrome under three-dot menu; along with playback speed and picture in picture).
So now onto the solutions:
1. Manual way trough inspect element
- open boberryvip.com and click on video
- pause the video playback
- hit ctrl+shit+c and hover over the video
- when you see the video highlighted click to select it
- Now look at the marked source code of the video element in the inspect window
- Edit the controlslist attribute to be empty OR remove it completely
2. Automatic way trough js
use an Extension that can inject js into specified webpages.
These simple lines of code should do the trick:
https://hastebin.skyra.pw/devowebeja.tsThis just runs the removeControlsList function every second.