Hacker News Notification

Hacker News Notification

Top 30 Hacker News Notification

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hacker News Notification",
  "version": "2.2",
  "manifest_version": 2,
  "description": "Top 30 Hacker News Notification",
  "permissions": [
    "notifications",
    "background",
    "tabs",
    "https://news.ycombinator.com/*"
  ],
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/logo19.png",
      "38": "img/logo39.png"
    },
    "default_title": "Hacker News Notification",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/popup.js",
        "js/background.js"
      ],
      "matches": [
        "https://news.ycombinator.com/*"
      ]
    }
  ],
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "128": "img/logo.png"
  },
  "web_accessible_resources": [
    "js/background.js"
  ]
}