Duclv

Auto-like4like

Mar 16th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Auto-like4like
  3. // @namespace    duclvz
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       duclvz
  7. // @match        https://www.like4like.org/free-facebook-likes.php
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.     window.onload=function(){
  14.         setInterval(function(){
  15.           if (document.querySelector('td span a').href == 'https://www.like4like.org/contact.php')
  16.             location.reload();
  17.           document.querySelector('td span a').click();
  18.         }, 15000)
  19.     };
  20. })();
Advertisement
Add Comment
Please, Sign In to add comment