Examine source code of VK advanced

Inspect and view changes in VK advanced source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "VK advanced",
  "version": "0.3.1",
  "description": "Improves UX on vk.com",
  "icons": {
    "48": "icons/vk-logo.png"
  },
  "applications": {
    "gecko": {
      "id": "VKAdvanced@cretiX",
      "strict_min_version": "60.0"
    }
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ],
  "browser_action": {
    "default_icon": "icons/vk-logo.png",
    "default_title": "VK advanced",
    "default_popup": "popup/default_popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://vk.com/*"
      ],
      "js": [
        "default.js"
      ]
    }
  ]
}