Hack the News

Hack the News

A Hacker News icon that notifies you when the top story changes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hack the News",
  "version": "0.1.1",
  "manifest_version": 2,
  "description": "A Hacker News icon that notifies you when the top story changes.",
  "content_security_policy": "script-src 'self' https://*.firebaseio.com; object-src 'self'",
  "icons": {
    "16": "images/hacker-news-16.png",
    "128": "images/hacker-news-128.png"
  },
  "background": {
    "scripts": [
      "app.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "19": "images/hacker-news-19.png",
      "38": "images/hacker-news-38.png"
    },
    "default_title": "Hack the News",
    "default_popup": "index.html"
  },
  "permissions": [
    "storage"
  ]
}