Fatkun Batch Download Image

Fatkun Batch Download Image

Download pictures in batches.

Additional files are visible only to premium users

manifest.json


{
  "description": "__MSG_ext_description__",
  "version": "10.4.2",
  "manifest_version": 3,
  "name": "__MSG_ext_name__",
  "options_page": "options.html",
  "default_locale": "en",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "icon-small.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css",
        "droppanel.css"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "ct.bundle.js"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "declarativeNetRequest",
    "downloads",
    "scripting",
    "tabs",
    "storage",
    "unlimitedStorage",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "commands": {
    "CMD_DOWNLOAD_CURRENT_TAB": {
      "suggested_key": "Alt+Z",
      "description": "__MSG_key_dl_current_tab__"
    },
    "CMD_DOWNLOAD_ALL_TABS": {
      "suggested_key": "Alt+X",
      "description": "__MSG_key_dl_all_tabs__"
    },
    "CMD_OUTPUT_DOWNLOAD": {
      "suggested_key": "Alt+S",
      "description": "__MSG_key_dl__"
    },
    "CMD_OUTPUT_SELECT_ALL": {
      "description": "__MSG_key_select_all__"
    },
    "CMD_OUTPUT_SELECT_TOGGLE": {
      "description": "__MSG_key_select_toggle__"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}