Extensions Update Notifier

Extensions Update Notifier

Show a notification when an extension is updated.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": false,
    "scripts": [
      "utils.js",
      "notifications.js",
      "management.js"
    ]
  },
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "50.0.2661.50",
  "name": "__MSG_extName__",
  "optional_permissions": [
    "https://chrome.google.com/*"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "alarms",
    "management",
    "notifications",
    "storage"
  ],
  "version": "3.5",
  "version_name": "3.5"
}