
srazzano said:@rob64rock,
status4evar addon updated so I reinserted the bookmark star left: http://sonco.synthasite.com/resources/status4evarMOD.xpi

/*Initialization Code*/
// left click button - start
// right click button - stop
// shift right click button - open custom button context popup
this.leftclick = function(event){
var interval = window.setInterval(function(){
this.removeCSS = function() {
var css=content.document.getElementById("visible-links-css");
if (css) css.parentNode.removeChild(css);
}
var newSS, styles='* { font-family: Segoe UI !important; background: #777 !important; color: black !important; } * { border-color: black !important; } :link, :link * { color: black ! important; text-decoration: none !important; } :visited, :visited * { color: #444 !important; text-decoration: none !important } img, image { opacity: .1 !important; } img:hover, image:hover { opacity: 1 !important; }';
this.removeCSS();
newSS=content.document.createElement('link');
newSS.id="visible-links-css";
newSS.rel='stylesheet';
newSS.href='data:text/css,'+escape(styles);
content.document.getElementsByTagName("head")[0].appendChild(newSS);
}, 1000)
this.rightclick = function(event){
window.clearInterval(interval);
this.removeCSS = function() {
var css=content.document.getElementById("visible-links-css");
if (css) css.parentNode.removeChild(css);
}
this.removeCSS();
return;
newSS=content.document.createElement('link');
newSS.id="visible-links-css";
newSS.rel='stylesheet';
newSS.href='data:text/css,'+escape(styles);
content.document.getElementsByTagName("head")[0].appendChild(newSS);
}
}
this.setAttribute("onclick", "custombuttons.gQuot.mHandler(event, this)");
/*Initialization Code*/
this.removeCSS = function() {
var css=content.document.getElementById("visible-links-css");
if (css) css.parentNode.removeChild(css);
}
this.quot = function(evt) {
switch(this.pref) {
case 1:
var newSS, styles='* { font-family: arial ! important; font-size: 16px ! important; font-weight: bold ! important; background: white ! important; background-image: none ! important; border: none ! important; color: black ! important } :link, :link * { color: black ! important; text-decoration: none ! important } :visited, :visited * { color: black ! important; text-decoration: none ! important }';
this.pref=0;
break;
case 0:
this.removeCSS();
this.pref=1;
return;
break;
}
this.removeCSS();
newSS=content.document.createElement('link');
newSS.id="visible-links-css";
newSS.rel='stylesheet';
newSS.href='data:text/css,'+escape(styles);
content.document.getElementsByTagName("head")[0].appendChild(newSS);
}
this.pref=0;

It looks like you're new here. If you want to get involved, click one of these buttons!