Removes the box saying you should register or login to view this page
当前为
// ==UserScript==
// @name Facebook ~ Remove register/login box
// @namespace https://github.com/0x9r3ydu5/remove-register-box
// @version 1.3.0
// @description Removes the box saying you should register or login to view this page
// @author Greydus
// @match https://www.facebook.com/*
// @grant none
// ==/UserScript==
var regbox = document.getElementById('pagelet_growth_expanding_cta');
if (regbox !== null) {
regbox.remove();
} else {
alert('Can\'t find the register message id');
}