您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Aggiungi pulsante per tornare su facebook
当前为
// ==UserScript== // @name facebook recent // @author figuccio // @namespace https://greasyfork.org/users/237458 // @description Aggiungi pulsante per tornare su facebook // @version 2.3 // @include * // @exclude https://*.facebook.com/* // @grant GM_registerMenuCommand // @exclude https://drive.google.com/* // @noframes // @grant GM_addStyle // ==/UserScript== /*(stringa30 !important evita il cambio di colore su alcuni siti stringa29 line-height il testo del pulsante resta centrato stringa29font-size8pt per evitare fuoriuscita della scritta fuori dal box su alcuni siti) */ var zNode = document.createElement ('div'); zNode.innerHTML = '<button id="myButton" type="button">' + 'FACE</button>' ; zNode.title = 'torna su facebook';//titolo al passaggio del mouse zNode.setAttribute ('id', 'myContainer'); document.body.appendChild (zNode); //--- Attiva il pulsante appena aggiunto. document.getElementById ("myButton").addEventListener ( "dblclick",function(){window.location.href = "https://www.facebook.com/?sk=h_chr";}); //--- Dai uno stile ai nostri nuovi elementi aggiunti usando i CSS.GM_addStyle (` `); GM_addStyle (multilineStr (function() {/* #myButton { position:fixed;top:0;left:0;text-align:center;line-height:14px;font-size:14px;width:71px;\\(evita pulsante troppo lungo su alcuni siti) font-weight:bold; cursor:move; color:red!important; background-color:green!important; border:2px solid blue; border-radius:12px; padding:6px 6px; z-index:500000; text-decoration:none; } */})); //questo ha sistemato il problema (` `);le personalizazioni dei colori del pulsante #myButton anche se apparentemente disattivati funzionano regolarmente function multilineStr (dummyFunc) { var str = dummyFunc.toString(); str = str.replace (/^[^\/]+\/\*!?/, '') //Funzione strip () { /*! .replace (/\s*\*\/\s*\}\s*$/, '') // Strip */ } .replace (/\/\/.+$/gm, '') // I commenti a doppia barra rovinano i CSS. ; return str; } //mostra nascondi pulsante function myFunction() { zNode.style.display = ((zNode.style.display!='none') ? 'none' : 'block'); } GM_registerMenuCommand("mostra/nascondi",myFunction); ////////////////////// //Make the DIV element draggagle: dragElement(document.getElementById("myButton")); function dragElement(elmnt) { var pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0; if (document.getElementById(elmnt.id + "header")) { /* if present, the header is where you move the DIV from:*/ document.getElementById(elmnt.id + "header").onmousedown = dragMouseDown; } else { /* otherwise, move the DIV from anywhere inside the DIV:*/ elmnt.onmousedown = dragMouseDown; } function dragMouseDown(e) { e = e || window.event; e.preventDefault(); // get the mouse cursor position at startup: pos3 = e.clientX; pos4 = e.clientY; document.onmouseup = closeDragElement; // call a function whenever the cursor moves: document.onmousemove = elementDrag; } function elementDrag(e) { e = e || window.event; e.preventDefault(); // calculate the new cursor position: pos1 = pos3 - e.clientX; pos2 = pos4 - e.clientY; pos3 = e.clientX; pos4 = e.clientY; // set the element's new position: elmnt.style.top = (elmnt.offsetTop - pos2) + "px"; elmnt.style.left = (elmnt.offsetLeft - pos1) + "px"; } function closeDragElement() { /* stop moving when mouse button is released:*/ document.onmouseup = null; document.onmousemove = null; } }