Google Notebook Slider

By NalaRegeork Uploaded Jul 12, 2009
/*
@author:
@email: Not Done
@title: Google Notebook Slidebar
@description: Show the Google Notebook on the Jetpack slidebar
@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,
onSelect: function(slide) {slide({ size: 350 });
if (jetpack.tabs.focused.contentDocument.getSelection() != "") {
$(slide.doc).find(".frame").attr("src", "http://www.google.com/notebook" + jetpack.tabs.focused.contentDocument.getSelection());
}
},
});