Examine source code of Webtrack

Inspect and view changes in Webtrack 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Webtrack",
  "author": "Universität Koblenz-Landau",
  "name": "Webtrack",
  "description": "Webtrack",
  "manifest_version": 2,
  "version": "0.9.6",
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage"
  ],
  "icons": {
    "128": "images/on.png"
  },
  "web_accessible_resources": [
    "images/on.png",
    "data/blacklists.json",
    "data/*.txt"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Webtrack",
    "default_icon": {
      "128": "images/off.png"
    }
  },
  "background": {
    "scripts": [
      "3rdpart/zip/deflate.js",
      "3rdpart/zip/inflate.js",
      "3rdpart/zip/z-worker.js",
      "3rdpart/zip/zip.js",
      "3rdpart/aes.js",
      "3rdpart/jsencrypt.min.js",
      "3rdpart/aws-sdk.min.js",
      "defined/settings.js",
      "dist/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "3rdpart/aes.js",
        "dist/content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}