See more without logging into Facebook

This script allows you to see more without logging into Facebook.

< Opiniones de See more without logging into Facebook

Puntuación: Malo; el script no funciona

§
Publicado: 14/02/2025

Please consider the following update:

// ==UserScript==
// @grant none
// @match *://*.facebook.com/*
// @run-at document-end
// ==/UserScript==

// Not used right now; it is too difficult to find.
request = 'Log in or sign up for Facebook to connect with friends, family and people you know.'

style_tag = document.createElement('style');
style_tag.innerHTML = `
/* Bob, the big login prompt that hides everything. */
.__fb-light-mode.x1n2onr6.xzkaem6 {
visibility: collapse !important;
}
`;
// If Bob is hidden first, then the smaller login prompt at the bottom never appears in the first place.
document.getElementsByTagName('head')[0].append(style_tag);

// Currently does not work because #login_form doesn't exist yet.
// Very annoying!!!!!
document.getElementById('login_form').style.visibility = 'collapse';

Publicar respuesta

Inicia sesión para responder.

长期地址
遇到问题?请前往 GitHub 提 Issues。