Merch Match

Merch Match

Single Upload Merch Match

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Anx Faxee",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon128.png",
    "default_title": "Merch Match",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*.amazon.com/manage/products*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "js/Bot.js",
        "js/commonFunctions.js",
        "js/code.js"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "matches": [
        "*://*.amazon.com/merch-tshirt/title-setup/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "js/Bot.js",
        "js/commonFunctions.js",
        "js/code.js"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "matches": [
        "*://*.singleupload.com/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "js/Bot.js",
        "js/commonFunctions.js",
        "js/code.js"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Single Upload Merch Match",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 2,
  "name": "Merch Match",
  "permissions": [
    "*://*.amazon.com/*",
    "*://*.amazon.de/*",
    "*://*.singleupload.com/*",
    "tabs",
    "storage"
  ],
  "version": "1.0.6",
  "web_accessible_resources": [
    "*.html",
    "*.css",
    "*.svg",
    "*.js"
  ]
}