Base Image Downloader

Base Image Downloader

Download images in one click. Image downloader supports PNG GIF JPG, SVG files. Filter by size, proper file names.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Base Image Downloader",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png",
    "300": "icons/icon-300.png"
  },
  "description": "__MSG_appDesc__",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "permissions": [
    "downloads",
    "storage",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "version": "1.2.3",
  "default_locale": "en",
  "web_accessible_resources": [
    "*"
  ]
}