LikeStats - сервис аналитики Avito

LikeStats - сервис аналитики Avito

Анализируйте статистику запросов, просмотров и динамику спроса прямо на сайте Авито

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Nikkable",
  "manifest_version": 3,
  "name": "LikeStats - сервис аналитики Avito",
  "description": "Анализируйте статистику запросов, просмотров и динамику спроса прямо на сайте Авито",
  "version": "1.0.4",
  "content_scripts": [
    {
      "matches": [
        "https://www.avito.ru/*"
      ],
      "js": [
        "ls-script.js"
      ]
    },
    {
      "matches": [
        "https://www.avito.ru/*"
      ],
      "run_at": "document_idle",
      "js": [
        "dist/main.js"
      ],
      "css": [
        "style.css",
        "dist/bundle.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/get_started16.png",
      "32": "/images/get_started32.png",
      "48": "/images/get_started48.png",
      "128": "/images/get_started128.png"
    }
  },
  "icons": {
    "16": "/images/get_started16.png",
    "32": "/images/get_started32.png",
    "48": "/images/get_started48.png",
    "128": "/images/get_started128.png"
  },
  "permissions": [
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "https://www.avito.ru/*"
  ],
  "options_page": "options.html",
  "externally_connectable": {
    "matches": [
      "*://my.likestats.io/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.jpg",
        "images/*.png",
        "ls-window-wb.js"
      ],
      "matches": [
        "https://www.avito.ru/*",
        "https://avito.ru/*"
      ]
    }
  ]
}