Like all

Likear mi y perfiles

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

Advertisement:

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

Advertisement:

// ==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');
    });
 }
);