Gmail Slidebar

By American_Jesus Uploaded Jun 13, 2009
/*
  @author: Bruno Guerreiro
  @email: american.jesus.pt@gmail.com
  @update: http://userscripts.org/jetpacks/43.js
  @title: Gmail Slidebar
  @description: Show the Gmail on the Jetpack sidebar
  @version: 0.1

  Based on: http://userscripts.org/jetpacks/36 by jimmy miller
*/
jetpack.future.import("slideBar");
jetpack.slideBar.append({
  icon: "https://mail.google.com/favicon.ico",
  width: 350,
  html: '<style>scrollbar * {display: none !important;}</style><iframe class="frame" height="99%" width="100%" src="https://mail.google.com/mail/x/"></frame>',
  onSelect: function(slide) {slide({ size: 350 }); 
  if (jetpack.tabs.focused.contentDocument.getSelection() != "") {
      $(slide.doc).find(".frame").attr("src", "https://mail.google.com/mail/x/"  + jetpack.tabs.focused.contentDocument.getSelection());
    }
  },                               
});