The best GPT (get paid to survey script)

Discussion in 'General Business' started by surbjit, Jun 27, 2009.

  1. #1
    Hey guys, well im looking for the best GPT survey script. I dont have a budget as such but the best reccomendations would be appreciated.
    Thanks!
     
    surbjit, Jun 27, 2009 IP
  2. afunguy24

    afunguy24 Peon

    Messages:
    42
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    http://userscripts.org/scripts/show/43110 GPT Greasemonkey script need to install greasemonkey.

    It auto skips, and selects all no's and keeps 1 yes on about 99% of all surveys. You may have to add sites into greasemonkey if it pauses on a skip page

    /* Source Code*/

    
    
    // ==UserScript==
    // @name           Just say NO!
    // @namespace      http://schoolsux.tz/
    // @description    Checks no on surveys, just enable whenever you need it; you should edit the @include.
    // @include           http://www.eltpath.com/*
    // @include           http://*.smileymedia.com/*
    // @include           http://lgn*.coolsavings.com/*
    // @include           http://lnktrckr.com/*
    // @include           http://*quizjungle.com/?act_id=*
    // @include           http://www.quizjumper.com/*
    // @include           http://www.modpath.com/*
    // @include           http://www.tnmtechnology.com/*
    // @include           http://www.brandarama.com/*
    // @include           http://www.topconsumergifts.com/*
    // @include           http://offers.slwpath.com/*
    // @include           http://us.quizrocket.com/*
    // @include           http://www*.recipe4living.com/default*
    // @include           http://www.premiumproductsonline.com/*
    // @include           https://mysmokingrewards.com/*
    // @include           http://www.eversave.com/*
    // @include           http://www.thelaptopsaver.com/*
    // ==/UserScript==
    
    inputs = document.getElementsByTagName("input");
    var checkedyes = 0;
    var radios=0;
    var firstradio=0;
    var foundradio=false;
    var i=0;
    for(i=0;i<inputs.length;i++)
    {
    	if(inputs[i].type=="radio")
    		{
    			if(!foundradio)
    			{
    				firstradio = i;
    				foundradio = true;
    			}
    			radios++;
    			if(inputs[i].value.toLowerCase()=="no")
    			{
    				inputs[i].checked = true;
    				inputs[i].click();
    				document.body.focus();
    			}
    			else
    			{
    				inputs[i].checked=true;
    			}
    		}
    	
    }
    if (radios>2)
    {
    	inputs[firstradio+2].checked=true;
    }
    
    next = document.getElementById("nextOffer");
    if (next == null)
    {
    	next = document.getElementById("pass");
    }
    if (next == null)
    {
    	next = document.getElementById("bt_cancel");
    }
    if(next == null)
    {
    	for(i=0;i<inputs.length;i++)
    	{
    		if((inputs[i].type=="submit") && (inputs[i].value.toLowerCase()=="skip"))
    		{
    			next = inputs[i];
    			break;
    		}
    	}
    }
    if(next==null)
    {
    	for(i=0;i<inputs.length;i++)
    		{
    			if((inputs[i].value.toLowerCase()=="submit") || (inputs[i].name.toLowerCase()=="submit"))
    			{
    				next = inputs[i];
    				break;
    			}
    		}
    }
    if(next == null)
    {
    	next = document.getElementById("submitbutton");
    }
    next.focus();
    next.click();
    Code (markup):
     
    afunguy24, Jun 28, 2009 IP
  3. Twi$ted

    Twi$ted Active Member

    Messages:
    217
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    53
    #3
    Interesting, how exactly does this work?
     
    Twi$ted, Jun 28, 2009 IP
  4. surbjit

    surbjit Guest

    Messages:
    53
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Yup very interesting....

    Any other suggestions are welcome!
     
    surbjit, Jun 28, 2009 IP
  5. surbjit

    surbjit Guest

    Messages:
    53
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Anyone?

    Thanks.
     
    surbjit, Jun 29, 2009 IP
  6. surbjit

    surbjit Guest

    Messages:
    53
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Im still awaiting a good response. :)
     
    surbjit, Jun 29, 2009 IP
  7. afunguy24

    afunguy24 Peon

    Messages:
    42
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    You need greasemonkey first, then just run the script when ever you doing surveys: userscripts.org/scripts/show/43110

    You are all set.
     
    afunguy24, Jun 30, 2009 IP