Access Bar Pro
Last update on May 16, 2006
Show the accesskeys that are defined on a page.
Show the accesskeys (Alt-?) defined on a given page.
This is yet another version of Mark Pilgrim's "Access Bar":1414 script, (including Vasco's "Access Bar2":3412 improvements), but now you can control its configuration via preference settings.
You could comment on this script if you were logged in.
7 comments
You could comment on this script if you were logged in.

login to vote
Author: Please check out User Script Updates - simply update the header of your script and your users will be able to receive change-notification when you improve this script
login to vote
Starting minmized with a small icon would be cool (something like the monkeybarrel icon but lower-right), or maybe have it show and then minimize a second later. I like the script, but for me and a friend that reviewed it, it gets in the way more often then not.
login to vote
Cool script! Just a small suggestion. It would be nice to close the script-generated layer using a keyboard shortcut.
login to vote
Here's a patch that removes duplicates
...
var alreadyUsed = new Array();
foreachNode
(
"//*[@accesskey]",
function(a)
{
var accessKey = a.getAttribute('accesskey').toUpperCase();
if (alreadyUsed[accessKey]) return;
alreadyUsed[accessKey] = true;
...
login to vote
Good code! :), do as Gabriel Porras says and I'm sold! :P
login to vote
That is an excellent ideas. I'll look in to that, (as soon as the employer lets up on me :).
login to vote
Can it begin minimized?
I´d like the bar can be minimized and maximized as the "Anatomize Page" (http://userscripts.org/scripts/show/3117) does.
Thanks... Great script!