Created
January 7, 2016 02:07
-
-
Save maagmirror/2c38b042172c2f24e4f6 to your computer and use it in GitHub Desktop.
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 Likeador | |
// @namespace http://taringa.net/naoko- editado por maag | |
// @version 0.4 | |
// @description Botón Likea perfiles y Mi | |
// @match *://www.taringa.net/* | |
// @copyright fabi | |
// @grant none | |
// ==/UserScript== | |
/*Fix jQuery*/ | |
function addbtn(){ | |
$('.perfil-info').append('<div class="follow-buttons" style="display:inline-block"><a original-title="Dale una violada a este user :3" onclick="$(\'.button-action-s.action-vote\').click()" class="btn g"><div class="following-text">Likear</div></a></div>'); | |
$('.my-shout-attach-options').append('<div class="follow-buttons" style="display:inline-block"><a original-title="Dale una violada a todos :3" onclick="$(\'.button-action-s.action-vote\').click()" class="btn g"><div class="following-text">Likear</div></a></div>'); | |
$('.search-in-search').append('<div class="follow-buttons" style="display:inline-block"><a original-title="Dale una violada a este user :3" onclick="$(\'.button-action-s.action-vote\').click()" class="btn g"><div class="following-text">Likear</div></a></div>'); | |
} | |
addbtn(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment