├── README.md ├── google.com.js ├── github.com.js └── yammer.com.js /README.md: -------------------------------------------------------------------------------- 1 | # My ~/.js files 2 | 3 | Contains tweaks to sites that I regularly use. 4 | Mainly to reduce small, nagging annoyances. 5 | 6 | Use with Chrome and [defunkts dotjs](http://defunkt.io/dotjs/). 7 | -------------------------------------------------------------------------------- /google.com.js: -------------------------------------------------------------------------------- 1 | // google reader, y u so ugly 2 | 3 | $(""). 4 | appendTo(document.body); 5 | -------------------------------------------------------------------------------- /github.com.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | // no yellow background on private repos please 4 | 5 | $(""). 6 | appendTo(document.body); 7 | -------------------------------------------------------------------------------- /yammer.com.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | // hide the useless sidebar 4 | 5 | $("").appendTo(document.body); 6 | 7 | function fixTitle() { document.title = "Yammer"; } 8 | 9 | for (var i = 0; i < 5000; i += 50) { 10 | setTimeout(fixTitle, i); 11 | } 12 | --------------------------------------------------------------------------------