Bulk Image Downloader

Bulk Image Downloader

Integrates Bulk Image Downloader (a Windows only app that must be installed separately) with Chrome

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bulk Image Downloader",
  "manifest_version": 3,
  "description": "Integrates Bulk Image Downloader (a Windows only app that must be installed separately) with Chrome",
  "version": "6.17.0.2",
  "background": {
    "service_worker": "eventPage.js"
  },
  "icons": {
    "16": "bid_16x.png",
    "48": "bid_48x.png",
    "128": "bid_128x.png"
  },
  "options_page": "options.html",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_title": "Open this page with BID",
    "default_icon": "bid_16x.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content_script.js",
        "content_scriptq.js",
        "content_scriptle.js",
        "content_scriptlinkq.js",
        "popup.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "nativeMessaging",
    "storage",
    "scripting"
  ],
  "commands": {
    "bid-opencurrentpage": {
      "suggested_key": {
        "default": "Alt+Shift+D"
      },
      "description": "Open Current Page with BID"
    },
    "bid-opencurrentpage2": {
      "suggested_key": {
        "default": "Alt+Shift+C"
      },
      "description": "Open Current Page with BID"
    },
    "bid-enqueuecurrentpage": {
      "suggested_key": {
        "default": "Alt+Shift+Q"
      },
      "description": "Enqueue Current Page with BID"
    },
    "bid-linkexplorer": {
      "suggested_key": {
        "default": "Alt+Shift+X"
      },
      "description": "Open Current Page with BID Link Explorer"
    }
  }
}