Created
January 3, 2019 04:40
-
-
Save maagmirror/fc492e30de4a3d9d61f97b7ad5542f0d 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 Violador | |
// @namespace http://taringa.net/XQ | |
// @version 0.4 | |
// @description Botón Likea perfiles y Mi | |
// @match https://www.taringa.net/* | |
// @copyright yo | |
// ==/UserScript== | |
/*Fix jQuery*/ | |
$.getScript('https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'); | |
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, .button-action-s.action-favorite\').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, .button-action-s.action-favorite\').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