Hacker News
Displays recent stories from Hacker News
What is Hacker News?
Hacker News is a Chrome extension developed by adam.albrecht, and its main feature is "Displays recent stories from Hacker News".
Extension Screenshots
Download Hacker News Extension CRX File
Download Hacker News 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
This extension displays the latest articles from Y Combinator's Hacker News (news.ycombinator.com). It also allows you to submit your current tab to Hacker News and perform a search of past Hacker News stories. Have any bugs or suggestions? Log them here: http://github.com/adamalbrecht/hacker-news-for-chrome/issues
Extension Basic Information
Name | Hacker News |
ID | geancnifhbkbjijfkcjjdnfemppmcjmk |
Official URL | https://chromewebstore.google.com/detail/hacker-news/geancnifhbkbjijfkcjjdnfemppmcjmk |
Description | Displays recent stories from Hacker News |
File Size | 25.31 KB |
Installation Count | 1,344 |
Current Version | 3.21.0 |
Last Updated | 2020-03-11 |
Publish Date | 2020-03-10 |
Rating | 4.56/5 Total 36 Ratings |
Developer | adam.albrecht |
Payment Type | free |
Extension Website | https://www.adamalbrecht.com |
Help Page URL | https://github.com/adamalbrecht/hacker-news-for-chrome |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hacker News", "version": "3.21.0", "description": "Displays recent stories from Hacker News", "icons": { "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_title": "Hacker News", "default_icon": "icon18.png", "default_popup": "popup.html" }, "background": { "page": "background.html" }, "options_page": "options.html", "permissions": [ "tabs", "https:\/\/news.ycombinator.com\/" ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/news.ycombinator.com; object-src 'self' 'unsafe-eval' https:\/\/news.ycombinator.com" } |