Pixiv Art Downloader

Pixiv Art Downloader

Downloads art from Pixiv artists with one click! Supports albums and single images.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pixiv Art Downloader",
  "version": "1.2.12",
  "description": "Downloads art from Pixiv artists with one click! Supports albums and single images.",
  "icons": {
    "48": "icons/megumin-48.png",
    "128": "icons/megumin-128.png"
  },
  "options_ui": {
    "page": "src/options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.pixiv.net/*"
      ],
      "js": [
        "src/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "src/background.js",
      "src/options.js"
    ]
  },
  "page_action": {
    "default_icon": "icons/megumin-128.png"
  },
  "permissions": [
    "activeTab",
    "declarativeContent",
    "downloads",
    "notifications",
    "storage",
    "*://www.pixiv.net/*",
    "*://i.pximg.net/*",
    "*://i-f.pximg.net/*"
  ],
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Alt+Shift+V",
        "mac": "Command+Shift+V"
      }
    }
  }
}