Tap Image Downloader

Tap Image Downloader

Download images in different formats: PNG, JPG, SVG, WEBP. Save your time with image downloader tool!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Tap 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.4.6",
  "default_locale": "en",
  "web_accessible_resources": [
    "*"
  ]
}