HNDN

HNDN

This extension shows a notifications for latest new/top stories from Hackernews.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HNDN",
  "description": "This extension shows a notifications for latest new/top stories from Hackernews.",
  "version": "1.2",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Hacker News Notifications"
  },
  "icons": {
    "16": "/assets/icons/newsicon16.png",
    "48": "/assets/icons/newsicon48.png",
    "128": "/assets/icons/newsicon128.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "background",
    "notifications",
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://*.firebaseio.com/; object-src 'self'",
  "web_accessible_resources": [
    "/assets/sounds/*",
    "/assets/icons/*"
  ],
  "background": {
    "scripts": [
      "/assets/js/background.js",
      "/assets/js/jquery-2.1.4.min.js",
      "/assets/js/firebase.js"
    ]
  }
}