This JavaScript script prevents image downloads by blocking access through common methods such as right-click "save image as" or downloading with browser extensions.
How It Works:
-
This script replaces images with
<canvas>
elements. -
The script blocks
HTMLCanvasElement.prototype.toBlob
,HTMLCanvasElement.prototype.toDataURL
methods to prevent downloading of the canvas contents. -
The script removes references to image files from HTML page section and from the structured data section.
How to Use:
No configuration is necessary, just include the script to your page. For example:
<script src="ImageBlocker.js"></script>
Or
<script src="https://raw.githubusercontent.com/SjomaNikitin/image-download-blocker/main/image-download-blocker.js"></script>
Limitations:
-
The script doesn't work properly with lazy-loading images yet.
-
User will still be able to download images using developer tools. This won't be fixed anytime soon. Unfortunately, there is no way to prevent user from opening developer tools.