Shop Small Assistant

Shop Small Assistant

Assistant for viewing the shop small map. Adds a 'see all shops' button to see shops that are on top of each other.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shop Small Assistant",
  "description": "Assistant for viewing the shop small map.  Adds a 'see all shops' button to see shops that are on top of each other.",
  "version": "0.0.9",
  "manifest_version": 3,
  "icons": {
    "128": "icon_128.png"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://maps.americanexpress.com/*",
        "https://www.americanexpress.com/*"
      ],
      "run_at": "document_end",
      "exclude_matches": [],
      "js": [
        "AmexShopSmallMapAssist.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "RunOnBrowser.js"
      ],
      "matches": [
        "https://www.americanexpress.com/*"
      ]
    }
  ]
}