Task - Improve subscriber value in Instagram

Easiest way

Than more likes and posts you do, than more subscribers you have.
Pretty simple, but what if you out of time?
All sweet you need to read! xD

If you do not have time - Lets your notebook do it!

  • As in previous times you need Firefox
  • Install Grease Monkey Extension
  • Copy paste script
  • Search for HASH Tag
  • Activate Grease Monkey
  • Enjoy!

Give me Like give me Next give me Scrip to do it flex

So this is proper script but how it works?
Switch ON donation Button and lets read.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// ==UserScript==
// @name TagItLikeIt
// @version 1
// @grant none
// ==/UserScript==
var likes = 0; // initial likes set to 0
var scrooltobottom = 200; //we will scrool bottom 200px

// Just checking if page loaded an
// Find this face it where program jump to start <(O.O)>
window.addEventListener('DOMContentLoaded', function() {
console.log('window - DOMContentLoaded - bubble'); // 3rd
function simulateCliks(el, evntType){
if (el.fireEvent) {
el.fireEvent('on' + evntType);
} else {
var evObj = document.createEvent('Events');
evObj.initEvent(evntType, true, false);
el.dispatchEvent(evObj);
}
likes++;
}
// <span class="glyphsSpriteHeart__filled__24__red_5 Szr5J">Unlike</span>
// <span class="glyphsSpriteHeart__outline__24__grey_9 Szr5J">Like</span>
var greyHearts = []; // Array of unliked things
var likeButton = []; // Array of buttons
var scrooltobottom =0;
var fixedScrool = 1600; // scrool for 600 px
var timerInt = 3000; // 6 sec

// <(O.O)> starting here with timer
setInterval(function(){
// Selecting all not "Liked Hearts"
// So we will click "Like" and "Next"
// Each time then pass simulateCliks function
greyHearts = document.getElementsByClassName("glyphsSpriteHeart__outline__24__grey_9");
simulateCliks(greyHearts[0].parentElement, 'click', likes);
// Finding right buttons
var xCom = document.getElementsByClassName("coreSpriteRightPaginationArrow");
console.log(xCom[0]);
simulateCliks(xCom[0], 'click', likes);
// window.scrollTo(0,scrooltobottom);
// scrooltobottom=scrooltobottom+fixedScrool;
console.log(likes+"-- likes for this session");
// Ctrl+Shift+I
// Find Console and see stats
// Thats all folks
}, timerInt);
});

Pls Donate with your CPU power





Lovely Donation








Video Instructions

YouTube - TagItLikeIt