HipsterNews
DesignerNews in your HackerNews so you can browse while you browse.
What is HipsterNews?
HipsterNews is a Chrome extension developed by Matt Milosavljevic (mmilo), and its main feature is "DesignerNews in your HackerNews so you can browse while you browse.".
Extension Screenshots
Download HipsterNews Extension CRX File
Download HipsterNews extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
HipsterNews is an extension that makes HackerNews (news.ycombinator.com) look more like DesignerNews (news.layervault.com). It’s created and maintained by Matt Milosavljevic, you can find him as @mmilo on Twitter.
Extension Basic Information
Name | HipsterNews |
ID | midnccdcbhikpniledkdhojbhdnkkkdb |
Official URL | https://chromewebstore.google.com/detail/hipsternews/midnccdcbhikpniledkdhojbhdnkkkdb |
Description | DesignerNews in your HackerNews so you can browse while you browse. |
File Size | 68.68 KB |
Installation Count | 169 |
Current Version | 0.5 |
Last Updated | 2013-07-04 |
Publish Date | 2013-07-03 |
Rating | 4.62/5 Total 21 Ratings |
Developer | Matt Milosavljevic (mmilo) |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HipsterNews", "version": "0.5", "manifest_version": 2, "description": "DesignerNews in your HackerNews so you can browse while you browse.", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/news.ycombinator.com\/*" ], "css": [ "styles\/main.css" ], "js": [ "jquery.min.js", "main.js" ], "run_at": "document_idle" } ], "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" } } |