Examine source code of MapleScout

Inspect and view changes in MapleScout source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "MapleScout",
  "version": "1.1",
  "description": "Highlights Canadian-made products on Amazon. Uses Amazon Associates Program - we may earn from qualifying purchases.",
  "icons": {
    "96": "images/favicon-96x96.png"
  },
  "permissions": [],
  "host_permissions": [
    "*://*.amazon.ca/*",
    "*://*.amazon.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "*://*.amazon.ca/*",
        "*://*.amazon.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.amazon.ca/*",
        "*://*.amazon.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/favicon-96x96.png"
  }
}