MatchIT

MatchIT

MatchIT Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MatchIT",
  "description": "MatchIT Extension",
  "version": "1.0.8",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "64": "icons/64x64.png",
    "128": "icons/128x128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "https://app.matchit.io/"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.amazon.com/*",
        "*://*.amazon.ca/*",
        "*://*.amazon.co.uk/*"
      ],
      "js": [
        "scripts/jquery-3.2.1.min.js",
        "scripts/common.js",
        "scripts/app.js"
      ]
    }
  ]
}