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


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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": "3.3.2",
  "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"
      }
    }
  },
  "externally_connectable": {
    "matches": [
      "https://dashboard.sellerapp.com/*",
      "*://localhost/*",
      "*://localhost:*/*"
    ]
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "identity",
    "https://cdn/sellerapp.com/**"
  ],
  "host_permissions": [],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkvjJlj2S2DaBX2xrjEvOgA0IPHNMVYjEKXBSgGCTInfnRhQUOe3wyAdctC63j2HlzQqTY6RboK7Lqah4fSgb3Ljr1Nc9P6PLvsScM4w6uE5zdpOf0s6GpoC87pPyTmqNnuaSmSJ/qi888VRZgaf5NhnOcXAfuDD5EjAvOoZyaZbe0CEmUYGSYvXjv/mqwpVnYuc/JrRjOfAH/3fAMsFABsdZN1w1WGCrdvvNzA9KwkpO5kyTLCaQyi2hdes//H6YkW2mkAEYgc5fn4mpz2/eNXlKaKLvJ4ZJngDUdBaglPu2JLNq/5zQd3g6i6LWPt62C5vc8GEAnXy0QBJVzlSPRwIDAQAB",
  "oauth2": {
    "client_id": "207791529245-lssdeq1bsg8pe3q8svr2f1s0am2chfb3.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "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/*",
        "https://*.amazon.sa/*"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ]
    }
  ]
}