GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Internet Explorer gfy postwhore HACK (https://gfy.com/showthread.php?t=887792)

SmokeyTheBear 02-13-2009 11:57 PM

Internet Explorer gfy postwhore HACK
 
heres a cool little tweak for i.e. users.

When you right click on a page in i.e. a number of option appear on a menu like "save background, copy,paste,etc"

This tweak will let you set a custom menu option that when clicked will put a random set of text into your clipboard as if you copied it, so now when you PASTE it will be a random set of text pulled from a javascript file

This is very usefull for putting random comments or html snippets on blogs/youtube/forums/gfy etc

heres how you do it, its very simple.

first save the following as stb.js put in your c: drive or wherever is easiest for you.

Code:

<SCRIPT LANGUAGE="JavaScript" defer>

var stb=new Array()


stb[0] = "Hello world";
stb[1] = "this rocks";
stb[2] = "Repent! The end is coming";
stb[3] = "i love cheese";
stb[4] = "the sky is blue";
stb[5] = "holy crap";
stb[6] = "did you see my sig";
stb[7] = "Wishes are like farts ";
stb[8] = "i \"love\" examples";
stb[9] = "wierd man";


var Q = stb.length;
var whichstb=Math.round(Math.random()*(Q-1));
sad = stb[whichstb];

external.menuArguments.clipboardData.setData("Text",sad);

</SCRIPT>

then save the following as stb.reg and put anywhere , you only need to run it once.

Code:

REGEDIT4

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\Random Text]
@="file://C:\\stb.js"

once you have saved it , click it to open/add it to registry, then just restart i.e. and right click and you will see a new item on the menu called "Random Text"


if enough people enjoy this tweak i will post some other examples of cool things you can do with this, like grabbing html or text from the page you are on and sending it to the js file, like lets say you wanted to always grab the title of the page you are on to include in the output text

$5 submissions 02-14-2009 12:00 AM

I name you PROMETHEUS :)

After Shock Media 02-14-2009 12:01 AM

Great thanks, now the contest whores can do their jobs in less clicks.

NicelyWritten 02-14-2009 12:06 AM

Hello world, lol

Jon Clark - BANNED FOR LIFE 02-14-2009 12:08 AM

Quote:

Originally Posted by After Shock Media (Post 15492036)
Great thanks, now the contest whores can do their jobs in less clicks.

:1orglaugh:1orglaugh:1orglaugh:1orglaugh

devine 02-14-2009 12:11 AM

Quote:

Originally Posted by Jon Clark (Post 15492050)
:1orglaugh:1orglaugh:1orglaugh:1orglaugh

so you added
Code:

:1orglaugh:
to the options, right? :winkwink:

woj 02-14-2009 12:16 AM

this rocks

Matt 26z 02-14-2009 12:30 AM

Will this also work in the address bar?

papill0n 02-14-2009 12:49 AM

that is a fucking great hack man :thumbsup :thumbsup

Reak AGV 02-14-2009 01:12 AM

the sky is blue ;)

Kron 02-14-2009 01:17 AM

Repent! The end is coming

grumpy 02-14-2009 01:20 AM

its not a hack.
The postwhores will love this feature.
Normal GFY users will hate you fot this snippet.

RevTKS69 02-14-2009 01:29 AM

Now that is funny
 
Quote:

Originally Posted by $5 submissions (Post 15492034)
I name you PROMETHEUS :)

Good stuff. For those who don't know:

Prometheus is a Titan known for his wily intelligence, who stole *fire* from Zeus and gave it to mortals for their use. Zeus then punished him for his crime by having him bound to a rock while a great eagle ate his liver every day only to have it grow back to be eaten again the next day.

:winkwink:

SmokeyTheBear 02-14-2009 01:50 AM

Quote:

Originally Posted by Matt 26z (Post 15492124)
Will this also work in the address bar?

kinda , when you right click in the address bar the menu wont come up , but the menu thing only puts the item in your clipboard it doesnt paste it anyways so if you wanted to paste random urls into your address bar you would simply right click on the page, click the menu item, then right click in the address bar and hit paste. so yes it does work but it takes 2 clicks on the menu

SmokeyTheBear 02-14-2009 01:51 AM

Quote:

Originally Posted by grumpy (Post 15492208)
its not a hack.
The postwhores will love this feature.
Normal GFY users will hate you fot this snippet.

hack is a fairly broad term , tweak is probably better but i figured hack would get more thread views :)

SmokeyTheBear 02-14-2009 01:59 AM

you can make a nice random form filler with this to , just repeat the process and add several menu items , like "random city" , "random name" "random country" etc

grumpy 02-14-2009 02:07 AM

Quote:

Originally Posted by SmokeyTheBear (Post 15492291)
hack is a fairly broad term , tweak is probably better but i figured hack would get more thread views :)

and you are right :thumbsup

Fredde 02-14-2009 03:49 AM

Cool trick!

seeandsee 02-14-2009 05:38 AM

your "hacks" are really great man!

martinsc 02-14-2009 06:34 AM

reminds me of a ff extension ;-)

CaptainHowdy 02-14-2009 07:00 AM

holy crap

plyndrty 02-14-2009 07:37 AM

i love cheese

TeenCat 02-14-2009 07:51 AM

good work man not sure where i can use this but thanks for sharing! :thumbsup bump for more hacks and wish you best with your sites! :thumbsup

SmokeyTheBear 02-14-2009 10:56 AM

Quote:

Originally Posted by TeenCat (Post 15492973)
good work man not sure where i can use this but thanks for sharing! :thumbsup bump for more hacks and wish you best with your sites! :thumbsup

blogs , emails , gfy , anything you input.

SmokeyTheBear 02-14-2009 11:00 AM

heres another example

use the same reg file/method as above but point to this js

it will allow you to select a block of text or area of any webpage you are on and get the source code for just that part you have highlighted with your mouse.

Code:

<SCRIPT LANGUAGE="JavaScript" defer>
        var selectedHtml=(external.menuArguments.document.selection.createRange()).htmlText;
       
        if(selectedHtml!= "")
                external.menuArguments.clipboardData.setData("Text",selectedHtml);
</SCRIPT>


Sosa 02-14-2009 11:15 AM

nice tip smokey

Dirty F 02-14-2009 12:38 PM

It's weird not wierd. It's amazing how many Americans can't spell that word right.

Brujah 02-14-2009 01:01 PM

Stop using IE! What's wrong with you people?

Si 02-14-2009 02:10 PM

good stuff if i used IE

GrouchyAdmin 02-14-2009 02:25 PM

That is the most foul thing I've seen in weeks. Congratulations! :thumbsup

I sent you some folks looking for an exit script like yours; I didn't feel like entirely rebuilding my exit to get rid of the primary logic that made it work.

Juicy D. Links 02-14-2009 02:40 PM

the sky is blue

u-Bob 02-14-2009 02:42 PM

Quote:

Originally Posted by Juicy D. Links (Post 15495805)
the sky is blue

even at night?

Juicy D. Links 02-14-2009 02:45 PM

i love cheese

Juicy D. Links 02-14-2009 02:45 PM

Repent! The end is coming

SmokeyTheBear 02-14-2009 04:15 PM

Quote:

Originally Posted by Dirty F (Post 15494894)
It's weird not wierd. It's amazing how many Americans can't spell that word right.

it was spelled that way on pupose to out anal people. It's amazing how much eurotrash still falls for that trick :winkwink:

SmokeyTheBear 02-14-2009 04:19 PM

Quote:

Originally Posted by Brujah (Post 15495127)
Stop using IE! What's wrong with you people?

why ? everything works with i.e. , rarely does everything work with firefox , and seeing how the vast majority of "paying" customers are using i.e. it would only make sense to use what my customers use :) then theres all those memory leaks in firefox

DaLord 02-14-2009 04:43 PM

Quote:

Originally Posted by SmokeyTheBear (Post 15496120)
it was spelled that way on pupose to out anal people. It's amazing how much eurotrash still falls for that trick :winkwink:

It's amazing how many people with forefathers from Europe even think about using the word eurotrash.

Generally speaking of course...


Mike

Juicy D. Links 02-14-2009 05:11 PM

holy crap

Iron Fist 02-14-2009 05:35 PM

Useless for Firefox... then again... i'd rather surf with no worries then being able to "tweak" my browser...

CurrentlySober 02-14-2009 05:37 PM

Code:

<SCRIPT LANGUAGE="JavaScript" defer>

var stb=new Array()


stb[0] = "I like poo";
stb[1] = "I like poo";
stb[2] = "I like poo";
stb[3] = "I like poo";
stb[4] = "I like poo";
stb[5] = "I like poo";
stb[6] = "I like poo";
stb[7] = "I like poo";
stb[8] = "I like poo";
stb[9] = "I like poo";


var Q = stb.length;
var whichstb=Math.round(Math.random()*(Q-1));
sad = stb[whichstb];

external.menuArguments.clipboardData.setData("Text",sad);

</SCRIPT>

Thanks dude! :thumbsup

AtlantisCash 02-14-2009 06:18 PM

fuck ff.

SmokeyTheBear 02-14-2009 08:05 PM

Quote:

Originally Posted by DaLord (Post 15496183)
It's amazing how many people with forefathers from Europe even think about using the word eurotrash.

Generally speaking of course...


Mike

maybe their forefathers weren't eurotrash :2 cents:

p.s. just because your from europe doesnt make you eurotrash, just like being american doesnt mean you are trailer trash

starpimps 02-15-2009 12:14 AM

thanks hot pics


All times are GMT -7. The time now is 01:32 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123