Deviant Art Downloader

Deviant Art Downloader

用于 Deviant Art 作品批量下载的 Chrome 扩展

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Deviant Art Downloader",
  "name": "Deviant Art Downloader",
  "version": "1.0.5",
  "manifest_version": 3,
  "description": "用于 Deviant Art 作品批量下载的 Chrome 扩展",
  "homepage_url": "http://www.ovo7.cn",
  "icons": {
    "16": "images/icon48.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_icon": "images/icon48.png",
    "default_title": "Deviant Art Downloader",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.deviantart.com/*"
      ],
      "css": [
        "static/content.css"
      ],
      "js": [
        "static/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "downloads",
    "tabs"
  ],
  "externally_connectable": {
    "ids": [
      "efcmplbhldgieddcnknaohfggcfodebk"
    ],
    "matches": [
      "https://www.deviantart.com/*"
    ],
    "accepts_tls_channel_id": false
  }
}