Skip to content

Instantly share code, notes, and snippets.

@folarb
Last active April 20, 2018 17:09
Show Gist options
  • Save folarb/33235 to your computer and use it in GitHub Desktop.
Save folarb/33235 to your computer and use it in GitHub Desktop.
CmdUtils.CreateCommand({
name: "gmail",
icon: "http://i290.photobucket.com/albums/ll274/airpupil/gmail_icon.png",
author: { name: "Robert B****", email: "folarb@gmail.com"},
description: "opens gmail inbox",
help: "enter 'gmail'and hit return to load the gmail inbox page",
preview: function( pblock ) {
pblock.innerHTML = "Opens gmail in a new tab, or in the current tab if it's empty.";
},
execute: function() {
var url = "http://mail.google.com"
Utils.openUrlInBrowser(url);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment