facebook logout figuccio

pulsante logout facebook

目前为 2020-05-23 提交的版本,查看 最新版本

// ==UserScript==
// @name          facebook logout figuccio
// @description   pulsante logout facebook
// @author        figuccio
// @version       0.2
// @namespace https://greasyfork.org/users/237458
// @include        https://*.facebook.com/*
// @noframes
// @grant         GM_addStyle
// @grant         GM_setValue
// @grant         GM_getValue
// @grant         GM_registerMenuCommand
// ==/UserScript==
window.onload = function(){
    document.getElementById('userNavigationLabel').click();
    document.getElementById('userNavigationLabel').click();
}
var esci = document.getElementsByClassName("_2t-f")[0];
var f = document.createElement('span');
f.innerHTML = "esci";
var c ='color:yellow!important;font-size:14px;cursor:pointer;font-weight:bold;text-decoration:none;margin-top:10px';
f.style.cssText = c;
f.title = 'logout facebook';
f.addEventListener('click', function(){window.location.href =document.forms[document.forms.length-1].submit();});
esci.appendChild(f);