-2

I don't want my website user to download my protected Vimeo videos - there is a couple of extensions that can download the video regardless of what I do.

How can I detect if the user is using them and redirect that page to somewhere else.

Marcus Müller
  • 34,677
  • 4
  • 53
  • 94
  • Think about how stupid (and dangerous) it would be if your browser told every website which extensions were installed. So, this is plain impossible. Your Video is just a file. A file that the browser needs to play the video. The file needs to get from Vimeo's server to the user somehow. And as soon as they get it, they can just save it. That's how it is. – Marcus Müller Aug 31 '17 at 20:03

1 Answers1

0

You can't know the extensions the user have. As Mozilla said:

You can't check for extensions that are installed. Plugins can be detected via navigator.plugins as you posted, but you can't detect extensions for privacy and security reasons.

As a general rule, if it's on the Internet, users will be able to copy the content. You can make the content harder to copy, but it's almost impossible to come up with a perfect solution.

ThoriumBR
  • 930
  • 12
  • 25