Seller Analytics by Lexos

Seller Analytics by Lexos

Análise de preços do MercadoLivre

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "5.3.1",
  "name": "Seller Analytics by Lexos",
  "description": "Análise de preços do MercadoLivre",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "https://*.mercadolivre.com.br/*"
  ],
  "content_scripts": [
    {
      "js": [
        "js/content-script.js"
      ],
      "matches": [
        "https://*.mercadolivre.com.br/*"
      ]
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "frame.html"
      ],
      "matches": [
        "https://*.mercadolivre.com.br/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}