UTAKU image downloader - 이미지 다운로더

UTAKU image downloader - 이미지 다운로더

Utaku image or video downloader, 이미지 다운로더

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "UTAKU image downloader - 이미지 다운로더",
  "default_locale": "en",
  "version": "0.1.07",
  "description": "Utaku image or video downloader, 이미지 다운로더",
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "options_page": "options/index.html",
  "content_scripts": [
    {
      "js": [
        "content/index.js"
      ],
      "css": [
        "content/index.css"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+X",
        "mac": "Alt+X"
      },
      "description": "Run Utaku"
    }
  },
  "action": {
    "default_icon": {
      "34": "icon34.png",
      "128": "icon128.png"
    }
  },
  "icons": {
    "34": "icon34.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "scripting",
    "storage",
    "downloads",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "chunks/*.js",
        "content/index.js",
        "*.png"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}