Web page protection software

Hi,
I am looking for a free software that i can add to my ebay listings and web pages so that when people R) click, they can;t steal my images and text. Anyone know any free software for this? Thanks!

Comments

  • The thing is, if they can see it, they can steal it! There are many Javascript based solutions that disables right click which are useless. You can also embed images inside a flash movie, but it still does not stop people from taking the screenshot and then does a crop themselves.

    I think adding watermark is probably the best way to stop people stealing images…

  • watermarks are the way to go. all other things can be by passed as mentioned by Scotty.

  • I figure that people who know alot are going to steal them anyway. No big deal, but I would like to disable to R) click… ideas for that?

    • In that case, I am not sure whether you can add Javascript on eBay pages (not really a seller on eBay), but the following should work on any other HTML pages:

      <script type="text/javascript">
      document.oncontextmenu = function() { return false; };
      </script>

      That will disable context menu from anywhere on the page. I doubt eBay will let you put in Javascript into your item description though.

Login or Join to leave a comment