EasyMerch for Merch by Amazon

EasyMerch for Merch by Amazon

Merch by Amazon Plugin to make uploading easier.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EasyMerch for Merch by Amazon",
  "short_name": "EasyMerch",
  "version": "1.3",
  "description": "Merch by Amazon Plugin to make uploading easier.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Resize Pictures and do Research",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://merch.amazon.com/*/title-setup/*/add_details"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "https://merch.amazon.com/designs/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "mpu.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 2
}