aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-05-23Add peniquitous.js, bind to input focus (WIP)Teddy Wing
Work in progress. Get all inputs on the page. Bind a callback to their focus event. The intention is that when the input is focused, I attach a handler to listen for Ctrl-N/P presses. Now that I'm writing this and thinking about it though, I might as well just bind the Ctrl-N/P listeners to all inputs to begin with an be done with it. Kind of a brute-force way of dealing with it but then I wouldn't have to keep track of whether or not I've bound those listeners to an input that was already focused previously.
2015-05-23Set up Bower. Install Mousetrap.Teddy Wing
* Create limited bower.json file * Create .bowerrc that tells Bower to use the `lib` directory * Install Mousetrap for key events
2015-05-23manifest.json: Fix `content_scripts` script definition syntaxTeddy Wing
The scripts need to be defined in the "js" key. All these syntax errors are because this block used to be a "background" definition but I changed it to "content_scripts".
2015-05-23manifest.json: Fix `content_scripts` syntaxTeddy Wing
Apparently it takes an array not a hash.
2015-05-23manifest.json: Change name "Peniquity" to "Peniquitous"Teddy Wing
I like the sound of the '-ous' better.
2015-05-23Initial commitTeddy Wing
Test manifest.json copied and modified from another one of my extensions. A decent start.