// ==UserScript==
// @name           Trac_L_ogin
// @namespace    http://protoscript.net/?c=userscript
// @description  Sets the shortcut key for "Login" to "L" on trac
// @include        https://management.etsy.com/etsy2/*
// ==/UserScript==

try{
  document.getElementById("metanav").childNodes[0].childNodes[0].childNodes[0].setAttribute("AccessKey", "L")
}
catch(e)
{
  //empty hack
}
