// ==UserScript== // @name RTM Keyboard Shortcuts // @namespace http://www.lingnik.com/ // @description Shows keyboard shortcuts for Remember the Milk before the body of RTM pages. // @author Taylor J. Meek // @homepage http://www.lingnik.com/software/rtmkbd/ // @include https://www.rememberthemilk.com/* // @include http://www.rememberthemilk.com/* // @exclude http://www.rememberthemilk.com/services/modules/gmail/* // ==/UserScript== var shorts = 'Add(t)   Complete(c)   Postpone(p)   Due Date(d)   Repeat(f)   Time Estimate(g)   Tags(s)   URL(u)   Location(l)   Add Note(y)   Rename(r)   Undo(z)   P1(1)   P2(2)   P3(3)   No P(4)   Delete(<Del>)' + '
Select All(a)   Select None(n)   Move Up(k)   Move Dn(j)   Select Item(i)   Switch Tabs(h)   Multi-Edit(m)   Tab(<Tab>)   Escape(<Esc>)' + '
Search(<CS>+/)   Overview(<CS>+6)   Tasks(<CS>+7)   Locations(<CS>+8)   Contacts(<CS>+9)   Settings(<CS>+0)   Move Next(<CS>+<Right>)   Move Previous(<CS>+<Left>)'; var logo = document.createElement("div"); logo.innerHTML = '

' + shorts + '

'; document.body.insertBefore(logo, document.body.firstChild);