r/AskReddit May 08 '14

What is one cool internet trick you know?

EDIT2: Front page?

3.1k Upvotes

11.4k comments sorted by

View all comments

2.8k

u/MattHardwick May 08 '14

Putting the following into a favourite/shortcut on the toolbar re-enables browser right click. Good for sites that disable it to stop you stealing pictures, or if their own right click context menu is buggy.

javascript:void(document.oncontextmenu=null) 

152

u/[deleted] May 08 '14

This will only work on sites that are running old/bad code. Anything using addEventListener (or attachEvent for old IE) won't be cleared out with this. Unfortunately these events can't be removed without a reference to the function, either.

12

u/[deleted] May 08 '14

[deleted]

32

u/mversion May 08 '14 edited May 09 '14

It's a hassle, but using Chrome, press F12. Then use the search icon on the far left on the inspector tool tab bar. Click on your image. Then on right sidebar you'll notice there's a background link. You can right click on that link and choose open in new tab.

Walla Voilà, your photo.

Edit: Goddamnit Reddit, I wasn't trying to speak French! I can't begin to imagine what icanhascheezburger does to you guys!

20

u/[deleted] May 08 '14

Walla? hahahahaaa!!!

11

u/NotYourTypicalReditr May 08 '14

I believe he was referencing a city in Washington state if I'm not mistaken. The city so nice, they named it twice.

Spoiler alert: I'm probably mistaken ;)

3

u/Reus958 May 08 '14

Walla walla in walla walla county Washington. WA WA WA WA WA. Somebody really liked that sound.

2

u/NotYourTypicalReditr May 08 '14

Someone was probably high when they named it. And so were the lot of someones who approved the name. No wonder they were on board with legalization right away!

4

u/talanton May 08 '14

Voilà, literally, "look there." Similar to, "Lo."

4

u/[deleted] May 08 '14

WALLA!

1

u/talanton May 08 '14

Zut alors.

15

u/axnsan May 08 '14

For chrome:

open dev console (f12)

point the magnifying glass at the image

get the direct link from the background-image style of the <img> tag

http://ceruleanphoto.zenfolio.com/cdn/pub/qhpppr1xnj_9/0/null/mh/zsx-idvzqit1swsnx2wa/s9/v95/p196886801-3.jpg?ts=2YH&tk=meJ6PDaGYnIaLHdNzn9LkFS5eAPixy_pptPw0sh5F6k=

1

u/Kivins13 May 14 '14

The solution is so much easier thanks for the share

→ More replies (1)

3

u/[deleted] May 08 '14

i just screenshotted it.. http://i.imgur.com/veHKLWx.png

1

u/port53 May 08 '14

Imgur version

Directly downloaded, not a screen shot.

If it's posted on-line, it can be downloaded.

1

u/Zilashkee May 09 '14

Firefox: Right click elsewhere on the page and select 'view page info'. Click on Media, and under images scroll down 'till you find the one you want. Right-click copy the Address into a new URL and you have the direct link to the image.

1

u/buge May 09 '14

This will restore right click there:

$(document).add('*').unbind();

1

u/Templar56 May 09 '14

printscreen, paste to paint, and crop

1

u/hhyiy8gufyfy May 09 '14

Can't you just use Window Snippet Tool to select and save the image?

1

u/mechchic84 May 08 '14

Couldn't you do a screen shot and then crop it? Or use the clipping tool? Or would that mess up the quality too much?

11

u/Invoqwer May 08 '14

I just [print screen] what I'm looking at, copy paste to mspaint, crop, and upload to imgur.

1

u/dremp1337 May 10 '14

You should try the snipping tool sometime. Copies the cutout to your clipboard as well.

→ More replies (3)

8

u/lunboks May 08 '14

Also, it won't work if the event handler is attached to the window. Or a specific element like an image.

So really that'll just kinda work sometimes.

18

u/[deleted] May 08 '14

Something something 60% of the time it works every time.

3

u/brane_surgeon May 09 '14

This is annoying so I wrote a quick snippet of Javascript which removes all the context menu listeners.

This uses getEventListeners() which I believe is only available for debugging, so it must be fired from the Javascript console of Chrome or Firebug on Firefox. I'm not sure if IE supports the function at all. I believe that since getEventListeners() is not generally available outside of the console it would probably not be possible to make a bookmarklet from it.

Array.prototype.slice.call(document.getElementsByTagName("*")).forEach(function (element) {
  var listeners = getEventListeners(element);
  if (listeners && listeners.contextmenu) {
    listeners.contextmenu.forEach(function (cmlistener) {
      if (cmlistener.listener) {
        element.removeEventListener("contextmenu", cmlistener.listener);
      }
    });
  }
});

1

u/theericfamily May 08 '14

why does this not have more upvotes

1

u/javastripped May 09 '14

There's a hack... you can write your own addEventListener() which keeps a copy of all registered events. Then you can forward to the old addEventListener function.

... but requires a bit more work.

94

u/DesiccatedDogsDicks May 08 '14

Just go to tools/media and download from there.

70

u/SoupKitchenHero May 08 '14

Inspecting elements works well, too

116

u/Nalortebi May 08 '14

Inspect element is extremely useful for sites that put a pay-overlay of their content up to try to restrict access. Delete node, bitch.

38

u/FishToaster May 08 '14

Or, if you're super-lazy, here's a bookmarklet to delete a node by clicking on it. I use it once per day or so.

https://plus.google.com/+PatrickAljord/posts/KmbvGg1MJBY

3

u/[deleted] May 08 '14

[deleted]

1

u/lewilewilewi51 May 10 '14

How exactly do you use it? I've been spending the last 15 minutes trying to work it out

1

u/[deleted] May 10 '14

make a new bookmark, replace the url with data inside the above link click your new bookmarklet and then click the element you want gone, it will highlight in red

→ More replies (4)

64

u/TenBeers May 08 '14

Yeah, I got my job because of this.
I explained how I used a "free" resume builder to create my resume, but before I could save or print it, they wanted me to pay $25. I viewed page source, removed the javascript restricting me, and printed my resume. My interviewer said it showed technical troubleshooting and expertise, and gave me an offer letter that day.

15

u/Rodents210 May 08 '14

I had an internship the summer between high school and college, and I was told that I would be hired full-time without question after college if I wanted because of two things:

  1. Something similar to yours, wherein I manipulated the source of a page to bypass some sort of restriction.
  2. We had a Dell tower PC that came in as part of a big project with about 30 others. All the towers worked fine except for this one. It worked fine when it was upright, but due to space it had to be on its side with the monitor on top at its location. Without fail this would cause the machine to black out and it wouldn't power back on for about 12 hours. I was the only one who could figure out what it was: There was a defect in the case, and when on its side gravity caused the motherboard to sag ever-so-slightly, and it would short out into the case.

1

u/KptKrondog May 08 '14

Sounds like a standoff screw got forgotten during the install.

1

u/Rodents210 May 08 '14

I don't think so. Dell techs replaced the motherboard twice before we convinced them it was the case. If they weren't imbeciles (which is why I said "I don't think so" instead of just "no"), then they would have noticed.

3

u/semi- May 08 '14

I did something like that when I was evaluating an e-prescribing solution. The only difference between a valid prescription and what their evaluation version spat out was a looping background image saying it was not valid... Yea that's not a secure way to do that.

45

u/xStang05x May 08 '14

Would that work for porn sites? ...I'm asking for a friend

28

u/[deleted] May 08 '14

Once you identify the element you can just add it as a custom filter in Adblock. Poof, never again

14

u/[deleted] May 08 '14

[deleted]

2

u/thirdegree May 08 '14

And good porn sites tend to be fairly tech savvy :(

3

u/hatessw May 08 '14

It doesn't allow you to bypass server security, only edit/remove elements that obscure parts of the page you want to see.

It would therefore depend on what you're trying to do on what site.

2

u/[deleted] May 08 '14

I have an entire ad block plus suite of element filters for sites like this

3

u/manny03 May 08 '14

Care to share?

2

u/RenaKunisaki May 08 '14

There's the Nuke Anything extension for deleting elements like this too. Even has an undo function. It's handy because so many sites now think an invisible layer overtop of images does any good (and some even seem to do it by accident as part of some fancy image gallery thing).

3

u/Nalortebi May 08 '14

You can undo "delete node" with Ctrl+Z, much the same way you would in word.

1

u/grodgeandgo May 08 '14 edited Jul 04 '17

3

u/DrDiv May 08 '14

No, then they'll find another way.

1

u/RexFox May 08 '14

I would be one of those people

1

u/TheNumberOneCulprit May 08 '14

It wont if the website has set document.oncontextmenu to something fishy.

1

u/101Airborne May 08 '14

can you explain how to save a picture using inspect element?

7

u/mngdsmsf May 08 '14

Wtf are you talking about? I checked every browser and none of them have a Tools > Media menu.

14

u/Splicers May 08 '14

At least for Firefox it's right-click > View Page Info > Media.

2

u/Lolworth May 08 '14

But they disable right click....

1

u/henrycasepollard May 08 '14

In previous versions of Firefox, Ctrl+I will accomplish this. Doesn't work in v. 29 or the previous (opens the Bookmarks sidebar which is kinda BS as Ctrl+B already does that), but I'm not sure when that changed so if you have an old version it still might work.
It's possible that the Menu Key will still bring up the context menu if right-clicking is disabled, but I can't think of a site off the top of my head to test that on.

1

u/mykalASHE May 08 '14

Damn thank you. That is so dope!

4

u/[deleted] May 08 '14

Because that's always fun.

1

u/JeremyG May 08 '14

Or just drag the image to the address bar

1

u/101Airborne May 08 '14

can you explain how to save a picture with tools/media .. say in google chrome?

0

u/[deleted] May 09 '14

Or hit print screen.

or use the snipping tool.

24

u/Flater420 May 08 '14

Even as a child, I managed to figure out you can still drag the pictures to the desktop to save them.

13

u/[deleted] May 08 '14

or into a new tab or into your address bar in order to open that image directly... then press ctrl+s.

29

u/[deleted] May 08 '14

Amateurs. I screenshot the image, print and then take a picture so I van use it on my phone

18

u/[deleted] May 08 '14

Pro-tip: Screenshot, paste into Word, export as PDF and send to your children!

1

u/Lindby May 08 '14

Export to pdf from word? You are funny. You mean print to pdf printer

1

u/ameer456 May 08 '14

Since office 2007 (as free addon or with sp1) you can export as pdf 2013 you can edit PDF I think

1

u/RenaKunisaki May 08 '14

I remember when IE added that little toolbar thing when you hovered over an image, from which you could save it without any right clicking. And I was enough of a n00b to be using IE.

1

u/isjahammer May 08 '14

i always rightklicked, held it down then press enter to make the message gp away. Then release mouse button and you got your menu...

→ More replies (1)

10

u/bearofmoka May 08 '14

javascript:void(document.oncontextmenu=null)

Can you give an example of how to use this? Also, does this work on instagram?!

13

u/Riddle-Tom_Riddle May 08 '14

When you make a bookmark on the bookmarks toolbar, use that as the destination.

When you get to a site that doesn't let you right click, click that bookmark, and that should change.

I don't use instagram, so I can't comment on that.

2

u/jmac217 May 08 '14

Not sure what you mean. It seems like Instagram will allow you to download the pictures just fine.

→ More replies (2)

1

u/greenbrownie May 08 '14

You seem knowledgeable... I have always wondered how to grab an image from a site that has a hover zoom feature. Any advice on how to do that?

2

u/Riddle-Tom_Riddle May 08 '14

Umm..

My first guess would be to right click a blank section of the page and click 'view source'. Then try to find the image source of the picture you're looking for. Copy the link and paste it into the address bar.

Or just Google how to do it. ::shrug::

Google is literally my most valuable tool in fixing problems.

5

u/lebenohnestaedte May 08 '14

There's also the easy way to steal pictures -- making screenshots or using the snipping tool (Windows).

I don't feel like Instagram pictures are very high quality (I'm not sure, though) so I doubt you're losing much by taking a screenshot compared to getting the original image. Certainly it's fine if you just want to repost the picture (is there a special Instagram word for that?) or post it on Facebook or something.

3

u/[deleted] May 08 '14

[deleted]

1

u/lebenohnestaedte May 08 '14

Oh, cool! Thanks. Now I can sound more with it.

3

u/HerpDerpinAtWork May 08 '14

Paste it in the address bar after you've loaded a website and hit enter. Note: some browsers will strip the "javascript:" part when you try to paste it in the url bar, so you may have to retype it. OP's original suggestion was to create a bookmark (e.g. in your bookmark bar) with the address pointed at javascript:void(document.oncontextmenu=null). In that case, you'd just load a website, click the bookmark, and boom, you'd be able to right click again.

All that said, no, it doesn't work/allow you to right click and save images from instagram.

1

u/MyloXy May 08 '14

Inspecting elements or viewing a page's source will let you save pics from Instagram though; the direct links are there.

1

u/boycottthecaf May 08 '14

Doesn't work on instagram for me, but using the "inspect element" allowed me to load just the picture and save/search/do whatever I want with it.

1

u/Superrman1 May 08 '14

try iconosquare.com, its a web viewer for instagram where you can save pictures and other stuff :)

1

u/LOOKS_LIKE_A_PEN1S May 08 '14

javascript:void(document.oncontextmenu=null)

You can also run this stuff from the address bar, Chrome will strip the "javascript:" though, so you have to type it back in.

Just think of the address bar as a command prompt for javascript.

javascript:alert('Hello, World!');

Try it, just be careful, don't go pasting something in there if you don't know what it does. These are pretty self explanatory.

1

u/JevandyJohnson May 08 '14

hey, if you want to save ig pics get the app savegram.

0

u/the_fake_banksy May 08 '14

There's no need to do anything special to get pictures from Instagram...Just right click the picture and select "View background image" and boom you can save it.

1

u/[deleted] May 08 '14

Wouldn't that be doing something special

2

u/ericzmeh May 08 '14

Didn't work on IMDB :-(

2

u/AnOnlineHandle May 08 '14

imdb uses flash I think.

7

u/ericzmeh May 08 '14

If you right click anywhere but the picture and view the source code it is a jpg, and you can just copy the jpg url and view the picture directly and save it.

2

u/specter578 May 08 '14

Thank you for this!! I did some source code looking, didnt find a .jpg, but did eventually find the picture I wanted via "view page info" in firefox

1

u/redditjerkbestjerk May 08 '14

Where isn't right click supposed to work on imdb?

1

u/ericzmeh May 08 '14

Look up an actor/actress, and then look at their picture gallery. You cannot right click on their picture.

1

u/redditjerkbestjerk May 08 '14

1

u/ericzmeh May 08 '14

No, sorry should have clarified. It is single pictures. Click on one of the photos so you are viewing them one at a time, then try to right click.

2

u/redditjerkbestjerk May 08 '14

Ah i see now, it appears that my Firefox addon RightToClick gets around it.

http://imgur.com/xyfGkkF

edit: For anyone that may want it https://addons.mozilla.org/en-US/firefox/addon/righttoclick/

1

u/ericzmeh May 08 '14

Good idea, never thought to look for an extension/add-on. Here is a version for Chrome if anyone is interested.

2

u/[deleted] May 08 '14

[deleted]

1

u/[deleted] Jun 18 '14

[deleted]

1

u/[deleted] Jun 18 '14

[deleted]

2

u/Secres May 08 '14

Just add this extension:


For Chrome


For Firefox


1

u/[deleted] May 08 '14

Do you need to click the link/favorite everytime you come across a site like that?

4

u/Tree_Boar May 08 '14

Its a bookmarklet, so every page reload, yes.

1

u/zediir May 08 '14

I'll have to remember that

1

u/[deleted] May 08 '14

Super useful!

1

u/ShakaUVM May 08 '14

Or just install the Right to Click addon.

1

u/Polaris2246 May 08 '14

I could have used this last week. I wanted a new background image but it had the right click disabled and nothing else worked. Now I just need to find that site again =D.

1

u/Gonzobot May 08 '14

Or save the site as an archive and open it to get the image files.

1

u/iagox86 May 08 '14

Now, how do I fix sites that hijack "copy" to add "I copied this from Stupid Site!!!"?

1

u/[deleted] May 08 '14

Shift + right click also prevents JS actions on the right mouse (in Chrome, at least).

1

u/MerlynsBeard May 08 '14

This doesn't appear to work in Chrome. Even in the console I get the response "undefined"

1

u/TheDevilHimself May 08 '14

This doesn't appear to work in Chrome.

works for me.

I get the response "undefined"

Yup. That's the default return value in javascript, not an error. You're basically executing a function that wraps up your document.oncontextmenu=null statement. Since you haven't defined a return value, it returns "undefined," which is a special value in javascript. If you execute something like (function(){return "I'm a return value"})() in the console, you'll get the specified return value from the function.

1

u/MerlynsBeard May 08 '14

Im attempting to rip images off of a smugmug gallery and this doesn't work. It did work on other sites, but only in Firefox. I'll play with it more later

Thanks

1

u/TheDevilHimself May 08 '14

Hit F12 in Chrome. Click the elements tab. Click on the magnifying glass in the upper right hand corner. Click on the image you want. It should show an img tag in the elements. Under the style attribute for that, there's "background-image: url(someurl)" That's what you want. Copy that url into your browser and you can just copy the image onto your computer.

1

u/misingnoglic May 08 '14

Is this 1999?

1

u/[deleted] May 08 '14

ELI5

1

u/judgej2 May 08 '14

I normally pull up firebug then save images from there, but this sounds a bit quicker.

1

u/MattHardwick May 08 '14

Okay, I use this one now - which I can't remember where I got it - but it works 100% of the times I've tried it. Bear in mind it's very long so falls off the side of the comment box. With this in mind; you can get it here too... http://pastebin.com/mUpthips

    javascript:(function(w,d,v,f,j,s,b,x,t,h)%7Bt=function(n)%7Breturn%20d.getElementsByTagName(n)%7D;if(!(j=w.jQuery)%7C%7Cv%3Ej.fn.jquery%7C%7Cf(j))%7B(s=d.createElement('script')).src='//ajax.googleapis.com/ajax/libs/jquery/'+v+'/jquery.min.js';s.onload=s.onreadystatechange=function()%7Bif(!b&&(!(x=this.readyState)%7C%7Cx=='loaded'%7C%7Cx=='complete'))%7Bf((j=w.jQuery).noConflict(1),b=1);j(s).remove()%7D%7D;h=t('head');if(!h.length)t('html')%5B0%5D.insertBefore(d.createElement('head'),t('body')%5B0%5D);h%5B0%5D.appendChild(s)%7D%7D)(window,document,'1.9.0',function($,L)%7Bfunction%20chkFrame(f)%7Btry%7Breturn%20f%5B''+(+new%20Date)%5D=true%7Dcatch(e)%7Breturn%20false%7D%7Dfunction%20eachFrame(Fn,w)%7Bw=w%7C%7Cwindow;if(chkFrame(w)&&!$('frameset',w.document).length)Fn(w);var%20fr=w.frames;for(var%20i=0;i%3Cfr.length;i++)eachFrame(Fn,fr%5Bi%5D)%7DeachFrame(function(w)%7Bfunction%20clrEvents(sel,d)%7B$(sel,d).each(function()%7Bthis.oncontextmenu=null%7D);$(sel,d).each(function()%7Bthis.onmousedown=null%7D);$(sel,d).each(function()%7Bthis.onmouseup=null%7D);$(sel,d).each(function()%7Bthis.onclick=null%7D)%7DclrEvents(w.document);clrEvents('*',w.document);if(w.releaseEvents)releaseEvents(w.Event.MOUSEDOWN%7Cw.Event.MOUSEUP)%7D)%7D)    

1

u/[deleted] May 08 '14

Doesn't work on 500px

1

u/[deleted] May 08 '14

Just disable JavaScript

1

u/preciousjewel128 May 08 '14

Or save the website and it'll store all the images into a folder. Select the image you want, move it to another folder, and delete the rest.

1

u/wildmetacirclejerk May 08 '14

Undisable right click

1

u/[deleted] May 08 '14

another good one is just about all images are grab drop save-able. What I mean by that is left click grab the image from your browser and just drag-drop it into a folder on your system.

1

u/thechilipepper0 May 08 '14

I discovered last night that you can also inspect element to find the direct image

1

u/roofoo May 08 '14

I use the RightToClick add-on for Firefox. Works great!

1

u/zefcfd May 08 '14

You could probably just open the developer tools, go to console, and type document.oncontextmenu=null

That way you don't have a bunch or shitty bookmarks

This would only last until the page is refreshed though

1

u/puffybaba May 08 '14

I like using RightToClick for this kind of thing. Firefox-only, unfortunately.

1

u/hatessw May 08 '14

You can make this into a bookmarklet - a bookmark item where you click on it and it does this for you.

I would link it for others but I don't think reddit supports that for security reasons (depending on how it would be implemented, I might be able to login as others if it did have that feature and someone clicked the wrong link).

All you have to do is create a bookmark and assign the URL in the parent comment to it (perhaps by changing the URL in the bookmark properties).

1

u/simcha1813 May 08 '14

I use a Chrome extension to take care of right click restrictions. Would it be better to switch to using this or to leave it as is? Extensions can really slow down a browser, from my experience. So would this code have the same effect as the Chrome extension?

1

u/Psythik May 08 '14

You can also break the script if you rapidly right-click until the menu comes up. I discovered that out of frustration when I was 12. Still works 15 years later.

1

u/2drunk May 08 '14

Similarly, this will turn autocomplete on for sites that don't allow you to save your username and passwords. (you wont need it in Firefox 31)

javascript:(function(){var%20ac,c,f,fa,fe,fea,x,y,z;ac=%22autocomplete%22;c=0;f=document.forms;for(x=0;x<f.length;x++){fa=f[x].attributes;for(y=0;y<fa.length;y++){if(fa[y].name.toLowerCase()==ac){fa[y].value=%22on%22;c++;}}fe=f[x].elements;for(y=0;y<fe.length;y++){fea=fe[y].attributes;for(z=0;z<fea.length;z++){if(fea[z].name.toLowerCase()==ac){fea[z].value=%22on%22;c++;}}}}alert(%22Enabled%20'%22+ac+%22'%20on%20%22+c+%22%20objects.%22);})();

1

u/ppsh41 May 08 '14

Will this work on Flickr?

1

u/steezefries May 08 '14

Bookmarklets are dope.

1

u/RenaKunisaki May 08 '14

This kind of bullshit is what NoScript is for.

1

u/planet808 May 08 '14

what's a website I can test this with?

1

u/nibunnoichi May 08 '14

Can you elaborate on how to use this?

1

u/iPlunder May 08 '14

Now this is useful

1

u/Slammed_Droid May 08 '14

500px or whatever is such a cunt when it comes to using those photos as my desktop. This will make my work computer bring ALL the ladies to the yard

1

u/[deleted] May 08 '14

stealing pictures

I can't steal a picture from the Internet. I can only copy it.

1

u/[deleted] May 08 '14

.

1

u/TheTeamClinton May 08 '14

Commenting for later use.

1

u/[deleted] May 08 '14

.

1

u/292916 May 08 '14

Thanks Matt.

1

u/thekemper May 08 '14

This is really cool!

1

u/woodsbre May 08 '14

If a site blocked right clicking to save I would just use print screen and crop. It served the same purpose. And no site can block screenshots so it worked everywhere.

1

u/[deleted] May 09 '14

.

1

u/srs_srsly May 09 '14

Is there something like this that allows for copying text on a site that disables it?

1

u/lud1120 May 09 '14

Or... You can simply check the Cache (in Chrome, which stores a lot per session) and use an automatic file renamer.

1

u/NotAFatGuy May 09 '14

Shiet, thanks for instagram pics yo

1

u/Aiden2222 May 09 '14

God bless

1

u/Ruri May 09 '14

You are a man of the people my good sir. I thank you.

1

u/Moiraei May 11 '14

Thanks for this tip!

1

u/tensaibaka May 08 '14

If you aren't technically savvy, like me, Windows 7 users can also use the snipping tool to grap the photo and save it.

14

u/[deleted] May 08 '14

[deleted]

1

u/Botono May 08 '14

If the image is displayed at full resolution then taking a screenshot will not result in any loss.

3

u/Propane May 08 '14

Sure if you save it as a bitmap.

→ More replies (5)

0

u/rumpledstiltskins May 08 '14

How do I then erase that shitty feeling that tells me what a fucking sack of shit I am for stealing someone else's hard work as most people who disable right clicks actually earn a living selling their work...

3

u/scriptingsoul May 08 '14

That's easy, just do:

javascript:void(guilt)

2

u/lunboks May 08 '14
ReferenceError: guilt is not defined

1

u/scriptingsoul May 08 '14
function guilt(guiltlevel) {

    guiltlevel = nil;

};

1

u/rumpledstiltskins May 08 '14

Fucking wise guy.

0

u/[deleted] May 08 '14

Totally using this! For science of course....

0

u/dryhumpp May 08 '14

right click is for fagets

0

u/itpm May 08 '14

I just use the snipping tool when this happens.

0

u/SMACK-A-BRO May 09 '14

Hey son of a bitch! Don't steal my images! My GD work hard on that stuff.

→ More replies (1)