Can I Really Disable the Copying of Pictures on My Tumblr Account

Can I Really Disable the Copying of Pictures on My Tumblr Account: Welcome to Belmadeng.com. I believe you are here because you are in need of a guide that teaches how to forbid people from copying photos from your Tumblr Account. If that is okay by you, let’s get started with how to prevent someone from copying your pictures on Tumblr. Continue reading below and please don’t hesitate to share it with your friends and loved ones!!!

Tumblr is an American microblogging and social networking website founded by David Karp in 2007 and currently owned by Automattic. The service allows users to post multimedia and other content to a short-form blog. Users can follow other users’ blogs. Bloggers can also make their blogs private.

This platform allows people all over the globe to sign up and login to their accounts. They also upload photos of any sort. Well, if you don’t want someone to copy your photos on Tumblr, you can easily get that done.

Interestingly, as a Tumblr user, if you wish to protect the photos on your Tumblr account from being downloaded without your consent, you can disable the right-click functionality for your page, hiding the context menu that allows others to copy or download your pictures. Tumblr allows you to fully customize the HTML and JavaScript code for your current theme. To protect your pictures, add two JavaScript functions to this code, one optimized for Internet Explorer and one for other browsers.

Click the name of your Tumblr blog on the dashboard and select “Customize Appearance” to open the appearance settings.

Click “Edit HTML” to open the HTML editor for your Tumblr theme. Locate the tag in the code.

Add a JavaScript method after the tag to disable the right-click action for users of Internet Explorer. You can use the following code fragment, which verifies the name of the browser and disables the feature by returning false if a user right-clicks on your page or presses the middle mouse button:

function DisableInternetExplorer(e) { if (navigator.appName == “Microsoft Internet Explorer” && (event.button == “2” || event.button == “3”)) { return false; } }

Add a separate method after the one for Internet Explorer to disable right-clicking in applications such as Firefox, Chrome or Safari. The following code fragment is equivalent to the one in the previous step, but the condition in the If statement is modified to support other browsers:

function DisableOtherBrowsers(e) { if (document.layers || (document.getElementById && !document.all)) { if (e.which == “2” || e.which == “3”) { return false; } } }

Link the two methods with mouse events in JavaScript, so they are called every time a right-click action is detected. For Internet Explorer, the mouse event for this action is “onmousedown,” while for other browsers it is “onmouseup.” Add the following two lines to call the methods when these events occur:

document.onmousedown=DisableInternetExplorer; document.onmouseup=DisableOtherBrowsers;

Add compatibility for older browsers, such as Internet Explorer 7, for which the right-click event is labeled “oncontextmenu,” by appending the following line at the end of your custom code fragment:

document.oncontextmenu=new Function(“return false”);

Click “Update Preview” to preview your page and test the functionality of your code. Select “Save” and click “Close” to save your preferences and close the Tumblr code editor.

That is it on Can I Really Disable the Copying of Pictures on My Tumblr Account. I hope this article was helpful. Kindly share!!!

Facebook Comments Box

Leave a Comment