eCommerce Profit Calculator

eCommerce Profit Calculator

ECommerce general profit calculator tool, suitable for Amazon, Etsy and other major platforms, can be used for free.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.8",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "homepage_url": "https://findniche.com",
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "host_permissions": [],
  "icons": {
    "16": "icon/icon.png",
    "48": "icon/icon.png",
    "128": "icon/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/chunk-vendors.js",
        "js/content.js"
      ],
      "css": [
        "css/main.css",
        "css/content.css",
        "css/element-plus.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "icon/icon.png",
    "default_title": "popup",
    "default_popup": ""
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "icon/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-src 'self'; child-src 'self'"
  }
}