There are 1 previous version of this script.
// ==UserScript==
// @name Super Screenshot
// @namespace http://userscripts.org/users/23652
// @description Takes a quick screenshot of any website you're on
// @include http://*
// @include https://*
// @exclude http://superscreenshot.com/*
// @copyright JoeSimmons
// ==/UserScript==
function send() {
GM_openInTab("http://superscreenshot.com/getscreen.php?url="+escape(window.location.href.replace(/^http:\/\//,'')));
}
GM_registerMenuCommand("Take screenshot", send);
window.addEventListener("keydown", function(e){
if(e.ctrlKey && e.shiftKey && e.keyCode==88) {send();}
},false);