您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automate click like button for any person on the dating page.
当前为
// ==UserScript== // @name topface.com Like By Press 1 // @name:en topface.com Like By Press 1 // @name:ru topface.com Лайк по нажатию 1 // @version 1.0 // @description Automate click like button for any person on the dating page. // @description:en Automate click like button for any person on the dating page. // @description:ru Автоматическое нажатие по симпатии(лайк) для любого человека на странице свиданий(dating) // @author Paul Malyarevich // @contributor malyarevich // @connect topface.com // @include https://topface.com/* // @include https://apps.facebook.com/topface/* // @include https://vk.com/topface?* // @run-at document-start // @encoding utf-8 // @namespace https://greatest.deepsurf.us/users/217675 // ==/UserScript== jQuery(document).on("keydown", function(e){ if(e.key === "1") { jQuery("div.starry.likes-buttons-wrapper .dating-button-sympathy").trigger("click") } })