Examine source code of Resist the Internet

Inspect and view changes in Resist the Internet 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": "Resist the Internet",
  "description": "A browser extension that enforces a better Internet by redirecting you to privacy-preserving alternatives.",
  "version": "2.1resigned1",
  "icons": {
    "16": "ico/resist.png",
    "48": "ico/resist.png",
    "128": "ico/resist.png"
  },
  "browser_action": {
    "default_icon": "ico/resist.png",
    "default_popup": "options/options.html"
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "background": {
    "scripts": [
      "js/init.js",
      "js/google.js",
      "js/background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "tabs",
    "<all_urls>",
    "storage",
    "notifications",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "fontawesome/"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{6024b022-e86a-4231-8c12-71596c0a1018}"
    }
  }
}