Dark theme for VK.COM | Night Mode for Vkontakte™

Classic dark theme for Vkontakte. Switch VK to dark mode and back in one click.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "description": "__MSG_description__",
  "default_locale": "ru",
  "version": "3.4.0.1",
  "author": "Light Alex",
  "homepage_url": "https://addons.lightalex.com/#darkvk",
  "icons": {
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/popup_dark_16.png",
      "24": "icons/popup_dark_24.png",
      "32": "icons/popup_dark_32.png"
    }
  },
  "background": {
    "scripts": [
      "files/script/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://vk.com/*",
    "https://vk.com/*",
    "http://*.vk.com/*",
    "https://*.vk.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://vk.com/*",
        "*://*.vk.com/*"
      ],
      "js": [
        "files/script/styles.js",
        "files/script/inject.js",
        "files/script/inject-feed.js"
      ],
      "run_at": "document_start"
    }
  ]
}