Advertisement
Guest User

I'm Really Feeling It!

a guest
Nov 1st, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         I'm Really Feeling It!
  3. // @namespace    https://www.facebook.com/
  4. // @version      0.1
  5. // @description  I can see it!
  6. // @author       Shulk
  7. // @match        https://www.facebook.com/*
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. var likes = document.getElementsByClassName('UFILikeLink');
  12.  
  13. window.setInterval(function() {
  14.     for (var i = 0; i < likes.length; i++) {
  15.         likes[i].innerText = (likes[i].innerText == "Like" || likes[i].innerText == "I'm Really Feeling It!") ? "I'm Really Feeling It!" : "Un-Really Feel It!";
  16.     }
  17. }, 50);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement