Bulk Image Details

Bulk Image Details

Show all current images of a website in a filterable table (with JSON and CSV export).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bulk Image Details",
  "description": "Show all current images of a website in a filterable table (with JSON and CSV export).",
  "version": "1.0.1",
  "homepage_url": "https://ht0.de/bulk-image-details.html",
  "manifest_version": 2,
  "incognito": "split",
  "permissions": [
    "storage",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "logo_16.png",
    "48": "logo_48.png",
    "128": "logo_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "logo_16.png",
      "48": "logo_48.png"
    },
    "default_title": "Open Bulk Image Details"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_start"
    }
  ]
}