wildberries track & history

wildberries track & history

График и отслеживание цен на wildberries с уведомлениями в telegram и браузере

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "wildberries track & history",
  "description": "График и отслеживание цен на wildberries с уведомлениями в telegram и браузере",
  "version": "2024.2.24",
  "icons": {
    "128": "img/ico128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.wildberries.ru/*",
        "https://*.wildberries.by/*"
      ],
      "js": [
        "js/jquery.js",
        "js/highstock.js",
        "wb.js"
      ]
    }
  ],
  "background": {
    "service_worker": "bg.js"
  },
  "permissions": [
    "storage",
    "notifications",
    "alarms"
  ],
  "host_permissions": [
    "https://*.wb.ru/*"
  ],
  "action": {
    "default_title": "wildberries track & history",
    "default_icon": {
      "128": "img/ico128.png"
    },
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*.png",
        "popup.html"
      ],
      "matches": [
        "https://*.wildberries.ru/*",
        "https://*.wildberries.by/*"
      ]
    }
  ]
}