Auto Amazon FBA ASIN Fees Calculator

Auto Amazon FBA ASIN Fees Calculator

Auto launch the native Amazon fees calculator and show net profit + Option to show sales rank below product title

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Auto Amazon FBA ASIN Fees Calculator",
  "version": "1.6",
  "description": "Auto launch the native Amazon fees calculator and show net profit + Option to show sales rank below product title",
  "browser_action": {
    "default_icon": "asin-icon.png",
    "default_title": "FBA & FBM Auto ASIN Amazon Fees Calculator"
  },
  "options_ui": {
    "page": "config/config.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.amazon.in/*/dp/*",
        "https://*.amazon.in/dp/*",
        "https://*.amazon.in/gp/product/*",
        "https://*.amazon.co.jp/*/dp/*",
        "https://*.amazon.co.jp/dp/*",
        "https://*.amazon.co.jp/gp/product/*",
        "https://*.amazon.com.sg/*/dp/*",
        "https://*.amazon.com.sg/dp/*",
        "https://*.amazon.com.sg/gp/product/*",
        "https://*.amazon.com.tr/*/dp/*",
        "https://*.amazon.com.tr/dp/*",
        "https://*.amazon.com.tr/gp/product/*",
        "https://*.amazon.de/*/dp/*",
        "https://*.amazon.de/dp/*",
        "https://*.amazon.de/gp/product/*",
        "https://*.amazon.it/*/dp/*",
        "https://*.amazon.it/dp/*",
        "https://*.amazon.it/gp/product/*",
        "https://*.amazon.nl/*/dp/*",
        "https://*.amazon.nl/dp/*",
        "https://*.amazon.nl/gp/product/*",
        "https://*.amazon.es/*/dp/*",
        "https://*.amazon.es/dp/*",
        "https://*.amazon.es/gp/product/*",
        "https://*.amazon.co.uk/*/dp/*",
        "https://*.amazon.co.uk/dp/*",
        "https://*.amazon.co.uk/gp/product/*",
        "https://*.amazon.fr/*/dp/*",
        "https://*.amazon.fr/dp/*",
        "https://*.amazon.fr/gp/product/*",
        "https://*.amazon.ca/*/dp/*",
        "https://*.amazon.ca/dp/*",
        "https://*.amazon.ca/gp/product/*",
        "https://*.amazon.com.mx/*/dp/*",
        "https://*.amazon.com.mx/dp/*",
        "https://*.amazon.com.mx/gp/product/*",
        "https://*.amazon.com.au/*/dp/*",
        "https://*.amazon.com.au/dp/*",
        "https://*.amazon.com.au/gp/product/*",
        "https://*.amazon.com.br/*/dp/*",
        "https://*.amazon.com.br/dp/*",
        "https://*.amazon.com.br/gp/product/*",
        "https://*.amazon.com/*/dp/*",
        "https://*.amazon.com/dp/*",
        "https://*.amazon.com/gp/product/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "https://*.amazon.com/*",
    "https://*.amazon.in/*",
    "https://*.amazon.co.jp/*",
    "https://*.amazon.com.sg/*",
    "https://*.amazon.com.tr/*",
    "https://*.amazon.de/*",
    "https://*.amazon.it/*",
    "https://*.amazon.nl/*",
    "https://*.amazon.es/*",
    "https://*.amazon.co.uk/*",
    "https://*.amazon.fr/*",
    "https://*.amazon.ca/*",
    "https://*.amazon.com.mx/*",
    "https://*.amazon.com.au/*",
    "https://*.amazon.com.br/*",
    "tabs",
    "storage",
    "https://formspree.io/*"
  ],
  "background": {
    "scripts": [
      "js/eventPage.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "toast/toast.html",
    "toast/toast.css"
  ]
}