Bizmetrica

Bizmetrica

Walmart product research made easy. See rank, estimated sales volume, estimated revenue and more without entering the product page.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bizmetrica",
  "description": "Walmart product research made easy. See rank, estimated sales volume, estimated revenue and more without entering the product page.",
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "https://api.bluecartapi.com/*",
    "identity",
    "identity.email"
  ],
  "version": "0.0.0.43",
  "icons": {
    "16": "Bizmetrica_16x16.png",
    "48": "Bizmetrica_48x48.png",
    "128": "Bizmetrica_128x128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "Walmart Product Research"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.walmart.com/*"
      ],
      "js": [
        "chart.min.js",
        "calculator.js",
        "content.js",
        "graph.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.walmart.com/*"
      ],
      "js": [
        "chart.min.js",
        "calculator.js",
        "content.js",
        "graph.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "amazon.png",
        "google.png"
      ],
      "matches": [
        "https://www.walmart.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://www.walmart.com/*"
  ]
}