Competition Meter

Competition Meter

A product research tool that helps users gauge the demand for products and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Competition Meter",
  "short_name": "Competition Meter",
  "version": "2.9",
  "manifest_version": 3,
  "description": "A product research tool that helps users gauge the demand for products and more",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "action": {
    "default_icon": "icons/128.png",
    "default_title": "Competition Meter",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.aliexpress.com/item/*",
        "https://*.aliexpress.us/item/*",
        "https://*.cjdropshipping.com/product/*",
        "https://*.alibaba.com/product-detail/*",
        "https://*.amazon.com/*",
        "https://*.ebay.com/*",
        "https://*.pinterest.com/*",
        "https://*.walmart.com/*",
        "https://*.bestbuy.com/*",
        "https://*.zendrop.com/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "declarativeNetRequest",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "https://competitionmeter.com/*",
    "https://i.pinimg.com/*",
    "https://pisces.bbystatic.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "1",
        "enabled": true,
        "path": "js/rules.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "src/browser_action/browser_action.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}