HackerNews reader

HackerNews reader

Make the Hacker News reading easier using following extension. This allows getting the latest news in real-time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HackerNews reader",
  "description": "",
  "version": "1.4",
  "content_security_policy": "script-src 'self' https://cdn.firebase.com https://*.firebaseio.com; object-src 'self'",
  "browser_action": {
    "default_icon": "public/image/logo-48.png",
    "default_popup": "dist/index.html"
  },
  "icons": {
    "16": "public/image/logo-16.png",
    "48": "public/image/logo-48.png",
    "128": "public/image/logo-128.png"
  },
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "background"
  ]
}