|
Anti No Right Click is a favelet that prevents web pages from disabling right-mouse clicking.
Anti No Right Click also prevents web pages from disabling text selection.
Adding a favelet to Internet Explorer:
If the "Links" bar isn't visible in the Internet Explorer toolbar, from the menu, select View —> Toolbar —>Links. Drag the favelet to the Links bar. You will receive a Security Alert dialog asking you if you really want to do this. You'll get this when you add all favelets to Internet Explorer. Note that the favelet isn't actually being executed during this operation. Favelets only execute when you click them. When dealing with an untrusted source, before adding favelets to your browser, it's good to test them by clicking on their link before you add them to your browser. If a security warning doesn't occur during this process, at least in theory, they should be safe, as favelets only execute when you click on them. You could always look at the favelet's source code by viewing the page contents before adding it to your browser. Once the favelet is in the Links bar, you can delete or rename the favelet by right clicking on it. Alternately, you can add the favelet to the "Links" folder of your Favorites, or any other folder in your Favorites.
Note: After you have done the above instructions, this can also work by dragging the favelet from your links menu on to the page you wish to "borrow" the items from! Then you may right click and ENJOY!!
Adding a favelet to Netscape:
If the "Personal Toolbar" isn't visible in the Netscape toolbar, select View —> Show/Hide —> Personal Toolbar. Drag the favelet to the Personal Toolbar. Once the favelet is in the Personal Toolbar, you can delete or rename the favelet by right clicking on it. Alternately, you can add it to the Personal Toolbar Folder of your Bookmarks, or any other folder in your Bookmarks.
Want the code for your site? Make sure Ink Challenged gets there link back, and it must not be modified.
javascript:/*Anti No Right Click. Copyright (C) Ink Challenged.cjb.net, 2004*/
function kill(doc)
{
doc.onmousedown =
doc.onmouseup =
doc.oncontextmenu =
doc.onselectstart =
doc.ondragstart = function(){return true};
if( window.releaseEvents )
{
releaseEvents(Event.MOUSEDOWN | Event.MOUSEUP);
}
}
onerror = function(){return true};
kill(document);
if( frames.length )
{
for(i=0; i < frames.length; ++i)
{
kill(frames[i].document);
}
else
{
kill(document);
}
Anti No Right Click By: Ink Challenged
Gecko Family Browsers By: Ink Challenged
This favelet is provided for entertainment purposes only. In no way do we suggest that you break other domain/website copyrights. .Please keep checking back for more updates. Never no what you are gonna get Enjoy..
|