Examine source code of TrackLess

Inspect and view changes in TrackLess 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": "TrackLess",
  "version": "1.1.0",
  "description": "Remove tracking parameters from URLs.",
  "homepage_url": "https://github.com/aenachescu/TrackLess",
  "author": "Alin Enachescu",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "icons": {
    "48": "icons/icon96.png",
    "96": "icons/icon96.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "browser_action": {
    "default_title": "TrackLess",
    "default_icon": "icons/icon96.png",
    "default_popup": "html/settings.html"
  }
}