МегаМаркет

МегаМаркет

Поиск выгодных товаров среди сотен товаров

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "МегаМаркет",
  "version": "2.2.0",
  "manifest_version": 3,
  "description": "Поиск выгодных товаров среди сотен товаров",
  "icons": {
    "32": "./megamarket_32.png"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "permissions": [
    "tabs"
  ],
  "host_permissions": [
    "https://megamarket.ru/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "style.css"
      ],
      "matches": [
        "https://megamarket.ru/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://megamarket.ru/*"
      ],
      "run_at": "document_idle",
      "all_frames": false,
      "js": [
        "./bundle.js"
      ]
    }
  ]
}