// ==UserScript==
// @name ClonPost
// @version 1.2
// @description Clonador de posts, clona cualquier post solo poniendo la Id. (el famoso repost)
// @match http://www.taringa.net/agregar
// @include *://*.taringa.net/agregar
// @include *://*.taringa.net/posts/editar/*
// @copyright @Cazador4ever
// @namespace http://www.taringa.net/Cazador4ever
// @icon http://o1.t26.net/images/favicon.ico
// ==/UserScript==
/* jshint -W097 */
(function($) {
var boton;
boton = '<style>.cazador {display: inline-block; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; width: 70px; height: 30px; cursor: pointer; top: 0; right: 0; bottom: 0; left: 0; padding: 0 10px; overflow: hidden; border: none; -webkit-border-radius: 2px; border-radius: 2px; font: normal 15px/normal "Courier New", Courier, monospace; color: rgba(0,0,0,1); text-decoration: normal; -o-text-overflow: ellipsis; text-overflow: ellipsis; background: #edf6ff; -webkit-box-shadow: 1px 1px 0 0 rgba(0,0,0,0.5) inset; box-shadow: 1px 1px 0 0 rgba(0,0,0,0.5) inset; -webkit-transition: all 502ms cubic-bezier(0.25, 0.1, 0.25, 1); -moz-transition: all 502ms cubic-bezier(0.25, 0.1, 0.25, 1); -o-transition: all 502ms cubic-bezier(0.25, 0.1, 0.25, 1); transition: all 502ms cubic-bezier(0.25, 0.1, 0.25, 1); } .cazador:hover {width: 150px; padding: 0 20px; color: #000000; background: #e0f1ff; -webkit-transition: all 500ms cubic-bezier(0.68, -0.75, 0.265, 1.75); -moz-transition: all 500ms cubic-bezier(0.68, -0.75, 0.265, 1.75); -o-transition: all 500ms cubic-bezier(0.68, -0.75, 0.265, 1.75); transition: all 500ms cubic-bezier(0.68, -0.75, 0.265, 1.75); } .cazador:focus {cursor: default; border: 1px solid #008cff; font: italic normal normal 15px/normal "Courier New", Courier, monospace; color: #005DAB; background: #d3ebff; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: all 601ms cubic-bezier(0.68, -0.75, 0.265, 1.75); -moz-transition: all 601ms cubic-bezier(0.68, -0.75, 0.265, 1.75); -o-transition: all 601ms cubic-bezier(0.68, -0.75, 0.265, 1.75); transition: all 601ms cubic-bezier(0.68, -0.75, 0.265, 1.75); }.btn-caza {display: inline-block; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; cursor: pointer; padding: 0.75em 1em; border: none; -webkit-border-radius: 2px; border-radius: 2px; font: normal 11px/normal Arial, Helvetica, sans-serif; color: rgba(255,255,255,1); -o-text-overflow: clip; text-overflow: clip; background: #005DAB; text-shadow: 0 -1px 0 rgb(91,129,17) ; } .btn-caza:hover {background: #008cff; -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms; -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms; -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms; transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms; } .btn-caza:active {color: #0052aa; background: #9bd2ff; -webkit-box-shadow: 0 1px 4px 0 rgb(65,105,23) inset; box-shadow: 0 1px 4px 0 rgb(65,105,23) inset; -webkit-transition: none; -moz-transition: none; -o-transition: none; transition: none; }</style><center><div class="box" Style=" background: rgba(224,232,255,0.4); border-radius: 5px 5px 5px 5px;-moz-border-radius: 5px 5px 5px 5px;-webkit-border-radius: 5px 5px 5px 5px;border: 0px solid #000000;"><input type="text" class="cazador" name="PostId" id="PostId" autocomplete="on" placeholder="Id del post." title="Colocar el Id del post que es el numero que aparece antes del título y espere un momento."><button class="btn-caza" id="clonarpost"><font color="#fff">Clonar</font></button></div></center>';
$('#sidebar').prepend(boton);
$("#clonarpost").on('click', function clon() {
var id = $('#PostId').val();
var api = 'http://api.taringa.net/post/view/' + id;
$.getJSON( api, function(json) {
var body= $('#markItUp').val();
var a = $('#markItUp');
var titulo = $('#titulo-input');
var tit = json.title;
var d = json.body;
var c = ''+d+'';
a.val(body+c).click().focus();
titulo.val(tit).click().focus();});
});
})(jQuery);