您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatic facebook poke
当前为
// ==UserScript== // @name Facebook autoclick // @namespace http://github.com/and3k5 // @version 2025-04-28 // @description Automatic facebook poke // @author And3k5 // @match https://www.facebook.com/pokes* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // ==/UserScript== (function () { "use strict"; const header = document .evaluate( "//body//*//span[text()[contains(.,'Pokes')]]", document.body, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null ) .singleNodeValue.appendChild(document.createElement("a")); header.innerText = "Start auto poke"; header.href = "javascript:void(0)"; header.style.color = "#a31a1a"; header.style.fontSize = "12pt"; header.style.verticalAlign = "baseline"; header.style.overflow = "visible"; header.style.marginLeft = "20px"; header.style.background = "#a3b0b7"; header.style.borderRadius = "50px"; header.style.padding = "5px"; header.style.lineHeight = "3"; header.addEventListener("click", () => { setInterval( () => document .evaluate( "//*[text()[contains(.,'Poke Back')]]", document.body, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null ) .singleNodeValue?.click(), 1000 ); }); })();