Examine source code of PixelHarvester Pro

Inspect and view changes in PixelHarvester Pro 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": "PixelHarvester Pro",
  "version": "1.0",
  "description": "Advanced bulk image downloader with powerful filtering and organization features",
  "permissions": [
    "activeTab",
    "downloads",
    "storage",
    "<all_urls>",
    "contextMenus"
  ],
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "browser_action": {
    "default_icon": "icons/icon-48.png",
    "default_title": "PixelHarvester Pro",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{c4fc7a8f-6db9-4c06-9d65-7a349d07ebcd}"
    }
  }
}