Like all

Likear mi y perfiles

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Like all
// @namespace    Like all
// @version      1.4
// @description  Likear mi y perfiles
// @author       @lavolavo
// @match       *://*.taringa.net/*
// @require     https://code.jquery.com/jquery-3.3.1.min.js
// @grant        none
// ==/UserScript==

this.$ = this.jQuery = jQuery.noConflict(true);

$(function()
 {
    var up='';

    if ($(".my-shout-attach-options")[0])
    {
        up='<li class="gm-t"><a id="stalk" data-type="image" class="btn g hastipsy" title="Positivo a todo"><div class="btn-text">Positivo all</div></a></li>';
        $('.my-shout-attach-options').append(up);
	}
    else if ($(".perfil-info")[0])
    {
        up='<a id="stalk" class="btn g"><div class="btn-text">Stalk</div></a>';
        $('.perfil-info').append(up);
	}

    $('#stalk').click(function(e) {
        $('div[title^="Me gusta"]').trigger('click');
    });
 }
);