[Script] Masters - Peter - Find the first names and usernames of Instagram users

Discussion in 'mTurk Scripts & Resources' started by rosesword975, Dec 4, 2016.

  1. rosesword975

    rosesword975 New Turker

    Messages:
    19
    Gender:
    Female
    Ratings:
    +11
    Here's the Master Script.

    Code:
    
    // ==UserScript==
    // @name         @Mshared - Peter - Find the first names and usernames of Instagram users
    // @namespace    https://greasyfork.org/en/users/13132-rosesword975
    // @version      1
    // @author       rosesword975
    // @description  Hides Instructions; copies username from link to correct box ; and puts "n/a" into the first name box and focuses on the first name box.
    // @grant        GM_log
    // @include      https://s3.amazonaws.com/mturk_bulk/hits/*
    // @require      https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js
    // @require      http://code.jquery.com/jquery-2.1.4.min.js
    // ==/UserScript==
    
    $(document).ready(function(){
      if ($('body:contains(Capitalize the first letter of their first name)').length){
       
        // Creates button and hides instructions.
        $(".panel.panel-primary").before('<button id="toggle" type="button"><span>Show Instructions</span></button>');
        $(".panel.panel-primary").after('<br></br>');
        $(".panel.panel-primary").hide();
    
        // Toggles instructions and changes toggle text.
        $('#toggle').click(function() {
        $(".panel.panel-primary").toggle();
        $('#toggle').text() == 'Show Instructions' ? str = 'Hide Instructions' : str = 'Show Instructions';
        $('#toggle span').html(str);
        });
       
        var link = $('a').eq(0).text();
        var split = link.split("/");      
       
          //window.open(link, 'pete and repeat');
          $('input[name="UserName"]').val(split[3]);
          $('input[name=FirstName]').focus().val("n/a");
      }
    });
     
    • Today I Learned Today I Learned x 1
  2. christianN

    christianN New Turker

    Messages:
    3
    Gender:
    Male
    Ratings:
    +5
    Hi, just wanted to ask if it's an actual info. I'm a beginner, so I don't know if these this script works or not and where I can use it. Btw and how it's linked with Instagram? I just know that there are special services like massfollowing/liking or https://igautolike.com/free-instagram-auto-likes and developing such services is also linked with artificial intelligence. I'm simply a software developer (it's my main work), so I'm searching for any info that can be useful. Thanks in advance!
     
  3. AlexAuba

    AlexAuba New Turker

    Messages:
    1
    Gender:
    Male
    Ratings:
    +0
    Same thing, i am pretty much of a beginner in this domain so i also wanted to know if there is any kind of a possibility to use it right now. I would really like to try this script, and another question, if is there any kind of a possibility to use this script with the certain changes for using it on facebook or twitter? I would also like really much a script that could show us the accs linked to the certain sites that are related to how to buy instagram followers. I saw such a script but it only could show you the amount of real followers and the number of the bots.
     
    Last edited: Aug 17, 2020
  4. Patrick S Corsosr

    Patrick S Corsosr New Turker

    Messages:
    1
    Gender:
    Male
    Ratings:
    +2
    To create a successful Instagram post, start with a clear purpose and message. Choose an engaging image or video and pair it with a concise and captivating caption. Use relevant hashtags to increase visibility and consider posting at optimal times for your audience. Don't forget to interact with your followers by responding to comments and DMs. If you don't have that much followers then choose an Instagram auto follow service.
     
    • Yikes Yikes x 1
    • Today I Learned Today I Learned x 1