Market Share OnSite

Market Share OnSite

Market Share OnSite enables you to see 4 or 13 weeks of an Amazon item's sales, traffic, and conversion.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Market Share OnSite",
  "description": "Market Share OnSite enables you to see 4 or 13 weeks of an Amazon item's sales, traffic, and conversion.",
  "version": "2.0.0",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Open the popup",
    "default_icon": "browser-icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./static/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/logo-marketshare.png",
        "/fonts/**/*.*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  }
}