Ubiquity Command to Execute Greasemonkey Menu Commands
Command
-
greasemonkey: Searches for available Greasemonkey menu commands, and displays them to you in preview, and offers you the ability to execute them with an input string.
Screen Shot
.toXMLString();
var ul = jQuery(pblock).find('ul');
for (c in commands){
var cb = ( function (cmd){
return function(){
context.chromeWindow.gUbiquity.closeWindow();
commands[cmd]._commandFunc();
}
})(c);
ul.append(jQuery('
').append(jQuery("
").text(c).click(cb)));
}
return;
}
});