Examine source code of Vera

Inspect and view changes in Vera 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
{
  "name": "Vera",
  "author": "UI Team at Vera",
  "manifest_version": 2,
  "description": "The Vera web extension",
  "permissions": [
    "storage",
    "tabs",
    "*://*/*"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/extension_icon16.png",
      "32": "images/extension_icon32.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.vera.com/*",
        "https://*.veraeng.com/*",
        "https://*.veraqa.com/*"
      ],
      "js": [
        "content-script-tenant.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://*.box.com/*"
      ],
      "js": [
        "content-script-box.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://*/*"
      ],
      "include_globs": [
        "*res/extension/index.html?VeraSPExtensionFlow=1*"
      ],
      "js": [
        "config-sharepoint.js"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": "default-src 'self'  http://127.0.0.1:62621 http://127.0.0.1:62622 http://127.0.0.1:62623 http://127.0.0.1:62624; script-src  'self'; object-src 'self'",
  "version": "2.1.22",
  "icons": {
    "16": "images/extension_icon16.png",
    "32": "images/extension_icon32.png",
    "48": "images/extension_icon48.png",
    "96": "images/extension_icon96.png"
  }
}