One Red Maple Smart Shopping Assistant

One Red Maple Smart Shopping Assistant

Shop as you normally do, and your free Smart Shopping Assistant instantly finds product matches at locally owned stores near you.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "One Red Maple Smart Shopping Assistant",
  "version": "3.9.1",
  "manifest_version": 3,
  "description": "Shop as you normally do, and your free Smart Shopping Assistant instantly finds product matches at locally owned stores near you.",
  "homepage_url": "http://oneredmaple.com",
  "icons": {
    "16": "assets/icons/logo_16.png",
    "32": "assets/icons/logo_32.png",
    "48": "assets/icons/logo_48.png",
    "64": "assets/icons/logo_64.png",
    "128": "assets/icons/logo_128.png"
  },
  "default_locale": "en",
  "permissions": [
    "storage",
    "geolocation",
    "offscreen",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "inject.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*",
        "assets/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}