Examine source code of RemoveIT

Inspect and view changes in RemoveIT 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
{
  "description": "Performes user defined actions such as clicking or removing browser cookies on user defined element selectors.",
  "manifest_version": 2,
  "name": "RemoveIT",
  "version": "1.0.6",
  "homepage_url": "https://removeit.at",
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage",
    "cookies",
    "browsingData",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/load-script.js"
      ],
      "all_frames": false
    }
  ],
  "background": {
    "scripts": [
      "background_scripts/background.js"
    ]
  },
  "browser_action": {
    "default_title": "RemoveIT",
    "default_icon": {
      "16": "icons/r.png",
      "32": "icons/r.png"
    },
    "default_popup": "sidebar/sidebar.html"
  }
}