Image Grabber

Image Grabber

Download images in bulk without clutter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' https://*.google-analytics.com https://*.googleapis.com https://www.googletagmanager.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "lib/jquery/jquery-3.4.1.js",
        "content.js",
        "img_count.js"
      ]
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "description": "__MSG_appDesc__",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "permissions": [
    "downloads",
    "<all_urls>"
  ],
  "version": "0.16",
  "default_locale": "en",
  "web_accessible_resources": [
    "*"
  ]
}