Examine source code of Orange Be Gone

Inspect and view changes in Orange Be Gone 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": "Orange Be Gone",
  "description": "This extension automatically blacks out pictures of Donald Trump where possible.",
  "version": "1.3resigned1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{c71ad258-560b-46ac-b3fc-97c31f672aef}"
    }
  }
}