Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.54 KB

SOCIAL_SCRAPING.md

File metadata and controls

42 lines (31 loc) · 1.54 KB

Social Scraping - ALPHA release

  • Make sure you're registered and install our extension

  • Continue your regular social browsing, your extension will collect public data and earn points for you. (you will not see the points in your dashboard yet, this is coming in the next big update)

  • If you want to earn more you can do the following:

  1. Open a tab on Twitter.
  2. Right click inspect.

image

  1. Paste the following code in the console , and leave it alone (we'll add this as a button in the extension next update).
var scrollDistance = 800;
var interval = 4000;
var maxScrolls = null;
var scrollCount = 0;
var currentScrollPosition = window.pageYOffset || document.documentElement.scrollTop;
var scrollInterval = setInterval(function() {
    if (maxScrolls !== null && scrollCount >= maxScrolls) {
        clearInterval(scrollInterval);
        return;
    }
    currentScrollPosition += scrollDistance;
    window.scroll(0, currentScrollPosition);

    scrollCount++;
    console.log("scroll number", scrollCount);
}, interval);

More Info