VKV: Обмен просмотрами вконтакте

VKV: Обмен просмотрами вконтакте

Автоматический обмен просмотрами постов вконтакте без банов. Это позволяет накрутить просмотры бесплатно.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "VKV",
  "name": "VKV: Обмен просмотрами вконтакте",
  "description": "Автоматический обмен просмотрами постов вконтакте без банов. Это позволяет накрутить просмотры бесплатно.",
  "version": "4.3",
  "manifest_version": 3,
  "permissions": [
    "alarms",
    "storage"
  ],
  "host_permissions": [
    "*://vk.com/*",
    "*://id.vk.com/auth*",
    "*://crazy-like.ru/*",
    "*://ulogin.ru/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://vk.com/*",
        "*://id.vk.com/auth*",
        "*://ulogin.ru/auth.php*"
      ],
      "js": [
        "js/inject.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "html/*",
        "icons/*",
        "js/*",
        "css/*"
      ],
      "matches": [
        "*://id.vk.com/*",
        "*://ulogin.ru/*",
        "*://vk.com/*"
      ]
    }
  ],
  "icons": {
    "32": "icons/ico_32.png",
    "48": "icons/ico_48.png",
    "128": "icons/ico_128.png"
  },
  "action": {
    "default_icon": {
      "32": "icons/ico_32.png",
      "48": "icons/ico_48.png",
      "128": "icons/ico_128.png"
    },
    "default_title": "VKV",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  }
}