Agency Toolchest

Agency Toolchest

The Agency Toolchest Chrome Extension is used to send information to the AgencyToolChest Web Application.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Agency Toolchest",
  "description": "The Agency Toolchest Chrome Extension is used to send information to the AgencyToolChest Web Application.",
  "version": "1.8.8",
  "manifest_version": 3,
  "minimum_chrome_version": "116",
  "permissions": [
    "storage",
    "background",
    "tabs",
    "webNavigation"
  ],
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "injector.bundle.js"
      ]
    }
  ]
}