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 Feed-icon

1 point
login to vote
gabedibble scriptwright
Posted Apr 8, 2007

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

1 point
login to vote
gabedibble scriptwright
Posted Apr 2, 2007

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.

1 point
login to vote
Vikti scriptwright
Posted Nov 27, 2006

Cool script! Just a small suggestion. It would be nice to close the script-generated layer using a keyboard shortcut.

1 point
login to vote
Russ Black scriptwright
Posted Aug 31, 2006

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;
...

1 point
login to vote
Vasco scriptwright
Posted Jul 15, 2006

Good code! :), do as Gabriel Porras says and I'm sold! :P

1 point
login to vote
Chris Noé script's author
Posted Jul 15, 2006

That is an excellent ideas. I'll look in to that, (as soon as the employer lets up on me :).

1 point
login to vote
Posted Jul 7, 2006

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!

You could comment on this script if you were logged in.