Extensions Update Notifier

Extensions Update Notifier

Get alert when any installed extension updates to a newer version.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "static/icon-48.png",
    "default_title": "Extensions Update Notifier"
  },
  "description": "Get alert when any installed extension updates to a newer version.",
  "homepage_url": "https://browsernative.com/chrome-extensions-update-notifier/",
  "icons": {
    "48": "static/icon-48.png",
    "128": "static/icon-128.png"
  },
  "manifest_version": 2,
  "name": "Extensions Update Notifier",
  "version": "1.0.0",
  "permissions": [
    "management",
    "notifications",
    "alarms"
  ]
}