catalog.app

catalog.app

Расширение помогает создавать карточки товаров на маркетплейсах Ozon и Wildberries.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "catalog.app",
  "description": "Расширение помогает создавать карточки товаров на маркетплейсах Ozon и Wildberries.",
  "version": "2.0",
  "manifest_version": 3,
  "action": {
    "default_title": "catalog.app"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "scripting",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://seller.ozon.ru/*",
    "https://seller.wildberries.ru/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "styles/common.css",
        "styles/reset.css",
        "images/fill-card.svg",
        "images/select-models.svg",
        "images/copy-description.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "icons": {
    "19": "images/icon19.png",
    "38": "images/icon38.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}