您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Alerts you when you have an opened chat window and that person is typing. Might be usefull to stalk who's stalking you
// Alerts you when you have an opened chat window and that person is typing // might be usefull to stalk who's stalking you // // ==UserScript== // @name Facebook Typing Detector // @description Alerts you when you have an opened chat window and that person is typing. Might be usefull to stalk who's stalking you // @date 2019-10-20 // @version 1.1 // @grant none // @include https://facebook.com/* // @include https://www.facebook.com/* // @namespace https://greasyfork.org/users/389185 // ==/UserScript== setInterval(function(){ if(document.getElementsByClassName("_31o4 _3njy").length > 0) { alert("Yo, someone's typing"); } }, 1000);