extWatcher

extWatcher

Watch a Chromium-based browser for extension install and removal events.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "extWatcher",
  "short_name": "extWatcher",
  "description": "Watch a Chromium-based browser for extension install and removal events.",
  "version": "1.0.1.0",
  "author": "Eric Lawrence (@ericlaw)",
  "icons": {
    "16": "images/icon16.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png"
    },
    "default_title": "Show Log"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "management",
    "storage"
  ]
}