Google Apps Sidebar

By alpha1beta Uploaded Jun 17, 2009
/*
@author:
@email: alpha1beta
@update: http://userscripts.org/jetpacks/61.js
@title: Google Apps Slidebar
@description: Show the Google Apps on the Jetpack sidebar
@version: 0.1

Based on: http://userscripts.org/jetpacks/43 by Bruno Guerreiro
*/
jetpack.future.import("slideBar");
jetpack.slideBar.append({
icon: "https://mail.google.com/favicon.ico",
width: 350,
html: 'scrollbar * {display: none !important;}',
onSelect: function(slide) {slide({ size: 350 });
if (jetpack.tabs.focused.contentDocument.getSelection() != "") {
$(slide.doc).find(".frame").attr("src", "https://mail.google.com/a/YOUR DOMAIN HERE/h/x" + jetpack.tabs.focused.contentDocument.getSelection());
}
},
});