Cr24{"content_scripts": [{"matches": ["http://news.ycombinator.com/item?id=*"], "js": ["hacker_news_comments.chrome.js"]}], "description": "Adds a footer to the end of the comments pages to give a visual cue of the end of page.", "run_at": "document_end", "version": "0.1", "zip_hash": "bc52af51214d7f4f6c33a20d003d6490d2b34e88a2ae0a0969c4f98fbe8d12cb", "id": "5E3888A13481CB9BE907550B01178156196C83EC", "name": "Hacker News Comments Footer"}PK:d4hacker_news_comments.chrome.js/* * Name: Hacker News Comments Footer * Version: 1 * Author: Tim Dupree * http://www.tdupree.com * email: tim [AT] tdupree [DOT] com * * License: Hacker News Comments Footer is released under the Open Source MIT License * (c) 2009 Tim Dupree * * Original Creation Date: July 24, 2008 * Ported from Greasemonkey to Chrome: June 1, 2009 * * Summary: Adds a footer to the end of the comments pages to give a visual cue of the end of page. * This is pretty much a straight port of the Greasemonkey Version. * */ (function() { var tables = document.getElementsByTagName('tbody'); var tbody = tables[0]; var tChildren = tbody.childNodes; var emptyTr = document.createElement("tr"); var emptyTd = document.createElement("td"); var br = document.createElement("br"); emptyTd.appendChild(br); emptyTd.appendChild(br); emptyTr.appendChild(emptyTd); tbody.appendChild(emptyTr); var footerTr = document.createElement("tr"); var footerTd = document.createElement("td"); footerTd.style.borderTop = "2px solid #FF6600"; footerTd.style.textAlign = "center"; footerTd.style.paddingTop = "15px"; footerTd.style.paddingBottom = "25px"; footerTd.innerHTML = 'Hacker News | Lists | RSS | Bookmarklet | Guidelines | FAQ | News News | Feature Requests | Y Combinator | Apply | Library'; footerTr.appendChild(footerTd); tbody.appendChild(footerTr); })();PK:3" manifest.json{ "content_scripts": [ { "js": [ "hacker_news_comments.chrome.js" ], "matches": [ "http://news.ycombinator.com/item?id=*" ] } ], "description": "Adds a footer to the end of the comments pages to give a visual cue of the end of page.", "id": "5E3888A13481CB9BE907550B01178156196C83EC", "name": "Hacker News Comments Footer", "run_at": "document_end", "version": "0.1" }PK:d4hacker_news_comments.chrome.jsPK:3" manifest.jsonPK