ID.me Shop: Exclusive Community Discounts

ID.me Shop: Exclusive Community Discounts

Let the ID.me Shop browser extension find exclusive Military, Nurse, Teacher, Responder discounts and more while you shop.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "version": "1.2.0",
  "manifest_version": 3,
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "background",
    "cookies",
    "webRequest",
    "storage"
  ],
  "minimum_chrome_version": "92",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "import-content.js"
      ],
      "css": [
        "assets/css/base.css"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "assets/images/toolbar-icon-16.png",
    "32": "assets/images/toolbar-icon-32.png",
    "48": "assets/images/toolbar-icon-48.png",
    "128": "assets/images/toolbar-icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/fonts/*",
        "assets/css/*",
        "assets/images/*",
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}