Examine source code of DCID - Double Click Image Downloader

Inspect and view changes in DCID - Double Click Image Downloader 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": "DCID - Double Click Image Downloader",
  "description": "Downloads an image to a specified subdirectory (Default: \"n1\") when you double click on it. Destination can be changed in the settings.",
  "version": "1.2resigned1",
  "icons": {
    "48": "icons/icon_48.png",
    "96": "icons/icon_96.png"
  },
  "applications": {
    "gecko": {}
  },
  "background": {
    "scripts": [
      "code/background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "code/content.js"
      ]
    }
  ],
  "permissions": [
    "downloads",
    "notifications",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{d872a062-d454-4a64-8f32-3f9851ce0a29}"
    }
  }
}