Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name My Fancy New Userscript
- // @namespace http://scruffyrules.com
- // @version 0.1
- // @description enter something useful
- // @author ScruffyRules
- // @match https://www.facebook.com/pokes*
- // @grant none
- // ==/UserScript==
- var count = 0;
- var autoPoke = setInterval(function() {
- count++;
- var anchors = document.getElementsByTagName("a"), i;
- for (i = 0; i < anchors.length; i = i + 1) {
- if (anchors.item(i).textContent === "Poke Back") {
- anchors.item(i).click();
- count = 0;
- }
- }
- if (count > 9) {
- location.reload();
- }
- }, 1000);
- console.log("Auto Poke Enabled");
Advertisement
Add Comment
Please, Sign In to add comment