Feed Notifier

Feed Notifier

Display popup notification on feed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Feed Notifier",
  "short_name": "FN",
  "description": "Display popup notification on feed",
  "version": "1.0",
  "browser_action": {
    "default_icon": "./images/icon48.png",
    "default_popup": "./templates/popup.html"
  },
  "options_page": "./templates/options.html",
  "permissions": [
    "storage",
    "notifications",
    "tabs",
    "alarms",
    "http://*/",
    "https://*/",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "packages/jquery/jquery.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "custom/js/background.js",
      "packages/jquery/jquery.js",
      "custom/js/others.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "./images/icon16.png",
    "48": "./images/icon48.png",
    "128": "./images/icon128.png"
  }
}