RecoBotón.

Botón para recomendar posts y temas.

当前为 2016-03-11 提交的版本,查看 最新版本

// ==UserScript==
// @name         RecoBotón.
// @namespace    http://www.taringa.net/Cazador4ever
// @match        http*://www.taringa.net/*
// @include      *://www.taringa.net/post/*
// @include      *://www.taringa.net/comunidades/*
// @version      1.2
// @description  Botón para recomendar posts y temas.
// @icon          https://a.fsdn.com/allura/p/taringaapp/icon
// @copyright    @Cazador4ever
// ==/UserScript==

$('.social-bar.social-bar--bottom').append('<style>a#reco{background: #000000;margin: 10px 0; width:100%;height: 27px;line-height: 24px;}a#reco:hover{background: #494949}</style><img src="https://k60.kn3.net/8/5/3/5/F/5/9E9.gif" id:"loading" style="display:none"><center><a rel="nofollow" id="reco" class="container-post post-social-media share-bt" title="Compartir en el Mi">Compartir en el Mi</a><img src="https://k60.kn3.net/2/4/2/A/9/0/7D7.gif" id="loading" style="display:none" /><img src="https://k61.kn3.net/2/B/3/7/2/3/4BA.png" id="listo" style="display:none" /></center>'); 
$('#reco').click(function shout() {
            var cont = '';
            var link = ''+document.URL+'';
            $("#reco").hide();
            $('#loading').show();
            $.ajax({
                    type    : 'POST',
                    dataType: 'json',
                    url     : '/ajax/shout/attach',
                    data    : {
                    url : link
                    },
            success: function(data){
            $('#loading').hide();
            $('#listo').show();
            $.ajax({
            type     : 'POST',
            dataType : 'json',
            url      : '/ajax/shout/add',
            data     : {
                key             : global_data.user_key,
                body            : cont,
                privacy         : 0,
                attachment_type : 3,
                attachment      : data.data.id
              
		    } 
          });
        }
     });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址