您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script removes the annoying force regicter box for non-facebook users
// ==UserScript== // @name Facebook: Disable Facebook force register box // @namespace https://gf.qytechs.cn/de/scripts/21545 // @description This script removes the annoying force regicter box for non-facebook users // @include *.facebook.*/* // @run-at document-end // @author lukie80 // @copyright Creative Commons Attribution-ShareAlike 3.0 Unported (CC-BY-SA 3.0) // @license http://creativecommons.org/licenses/by-sa/3.0/ // @version 2.0 // @lastupdated 2016.06.15 // ==/UserScript== //------------------------------------------------------------------------------------------------------------------- //execute on first run if (document.getElementsByClassName("_5hn6")[0]){ document.getElementsByClassName("_5hn6")[0].remove(); } //add event listener for dynamic creation document.addEventListener("DOMNodeInserted", function(eventHandler) { if (eventHandler.target.className=="_5hn6"){ document.getElementsByClassName("_5hn6")[0].remove(); //alert("fired"); } }, false); //-------------------------------------------------------------------------------------------------------------------
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址