Extra caution is recommended when installing recently uploaded/updated scripts (read more)
Be sure you trust any scripts you install
Show Keybind In Gmail
You press **'? key'** will open the shortcut help.
You could comment on this script if you were logged in.

login to vote
h (for help) also gets you the screen, it's bigger now (easier to read) and it focuses so you don't have to use the mouse to click first to focus and scroll.
--- showkeybindingmail_dist.user.js 2007-01-12 22:40:04.946278362 -0600
+++ showkeybindingmail.user.js 2007-01-12 22:41:24.074787639 -0600
@@ -67,7 +67,7 @@
var self = this;
with(this.elm.style) {
- height = '70%';
+ height = '95%';
width = '60%';
}
@@ -92,7 +92,11 @@
toggle: function() {
this.load();
- this.elm.style.display = this.elm.style.display ? '' : 'none';
+ if (this.elm.style.display){
+ this.elm.style.display = '';
+ this.elm.focus();
+ }
+ else this.elm.style.display = 'none';
}
};
@@ -108,7 +112,8 @@
function(e) {
var target = e.target.tagName;
if(target == 'INPUT' || target == 'TEXTAREA') return;
- if(e.charCode == 63)
+ //Accessible by ? or h
+ if(e.charCode == 63 || e.charCode == 104)
obj.toggle();
},
false
login to vote
Very nice - one of those "why didn't google provide it in the first place?" doohickeys.
login to vote
Thanks ajg23. I added http:// url.., now
login to vote
Helpful--thought I knew everything about keys but didn't!
**NOTE** If it is not working, you need to add http://mail.google.com/mail/* to "included pages" (currently has only https://...)