VK Customizer

VK Customizer

Расширение позволяет настраивать дизайн ВКонтакте на свой вкус

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "VK Customizer",
  "version": "2.6.3",
  "description": "Расширение позволяет настраивать дизайн ВКонтакте на свой вкус",
  "icons": {
    "16": "images/icons/icon16.png",
    "32": "images/icons/icon32.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://vk.com/*"
      ],
      "exclude_matches": [
        "https://vk.com/notifier.php*",
        "https://vk.com/wkview.php*",
        "https://vk.com/al_*.php*",
        "https://vk.com/dev*",
        "https://vk.com/apps*act=manage",
        "https://vk.com/about",
        "https://vk.com/products",
        "https://vk.com/jobs",
        "https://vk.com/blog*",
        "https://vk.com/adscreate*"
      ],
      "js": [
        "js/documentStart.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_title": "VK Customizer",
    "default_icon": "images/icons/icon48.png",
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "https://vk.com/*",
    "storage"
  ],
  "web_accessible_resources": [
    "js/libs/*",
    "vk/*"
  ]
}