SellerApp: Supercharge your Amazon Sales

SellerApp: Supercharge your Amazon Sales

SellerApp’s Chrome extension to Research and compare products on the go for Amazon Sellers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "SellerApp: Supercharge your Amazon Sales",
  "description": "SellerApp’s Chrome extension to Research and compare products on the go for Amazon Sellers",
  "short_name": "SellerApp Chrome Extension",
  "version": "2.7.0",
  "manifest_version": 3,
  "icons": {
    "16": "assets/fav.png",
    "48": "assets/fav48.png",
    "128": "assets/fav128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "SellerApp Chrome Extension",
    "default_icon": "assets/fav.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      }
    }
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "identity"
  ],
  "host_permissions": [],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.amazon.in/*",
        "https://*.amazon.com/*",
        "https://*.amazon.co.uk/*",
        "https://*.amazon.fr/*",
        "https://*.amazon.co.jp/*",
        "https://*.amazon.com.au/*",
        "https://*.amazon.com.mx/*",
        "https://*.amazon.ca/*",
        "https://*.amazon.de/*",
        "https://*.amazon.es/*",
        "https://*.amazon.it/*"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}