I use AttackAPI quite a lot in my work. Many times I need to load the library on the fly and mess with the attack subroutines straight from Firebug or any other JavaScript console that is available. This is the reason why I created the AttackAPI Loading Bookmarklet.
To install the bookmarklet you have to simply drag the Load AttackAPI link to your bookmark bar. You can also right click on it and select Bookmark this Link. The bookmarklet uses the latest AttackAPI. Feel free to send your suggestions and comments.
var script = document.createElement('script');
script.src = 'http://www.gnucitizen.org/blog/attackapi/AttackAPI-standalone.js';
script.type = 'text/javascript';
script.defer = true;
document.getElementsByTagName('head')[0].appendChild(script);