VKTop | Темы для ВКонтакте

VKTOP - приложения для вашего браузера для расширения возможностей серфинга в социальной сети ВКонтакте, с данным приложением вы…
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": "VKTop | Темы для ВКонтакте",
  "short_name": "VKTop",
  "author": "Nikita Starshov",
  "version": "0.19.1",
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/bg.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "https://vk.com/*",
        "http://vk.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "img/ico64.png",
    "default_popup": "settings.html",
    "default_title": "VKTOP Options"
  },
  "options_page": "settings.html"
}