Last active
February 10, 2017 01:36
-
-
Save angelarias/fa44d2bd2a0049ee2c7ce647c1622234 to your computer and use it in GitHub Desktop.
likea y añade a favoritos en el mi y en algunos perfiles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Like & Fav | |
| // @version 1.4 | |
| // @description Da likes y Fav en el MI y en algunos perfiles | |
| // @match *://www.taringa.net/* | |
| // @copyright Modificado por bla bla bla | |
| // @grant none | |
| // ==/UserScript== | |
| /*Fix jQuery*/ | |
| function addbtn(){ | |
| $('.my-shout-attach-options').append('<div class="follow-buttons" style="display:inline-block"><a original-title="Boton para el Mi" onclick="$(\'.button-action-s.action-vote\, \.button-action-s.action-favorite.hastipsy.pointer\').click()" class="btn g"><div class="following-text">Fav & Like</div></a></div>'); | |
| $('.search-in-search').append('<div class="follow-buttons" style="display:inline-block"><a original-title="Boton para perfil" onclick="$(\'.button-action-s.action-vote\, \.button-action-s.action-favorite.hastipsy.pointer\').click()" class="btn g"><div class="following-text">Fav & Like</div></a></div>'); | |
| } | |
| addbtn(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment