LinkedImageDownloader

LinkedImageDownloader

表示されている画像やリンク先の画像を一括保存します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LinkedImageDownloader",
  "version": "0.1",
  "description": "表示されている画像やリンク先の画像を一括保存します。",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "scripts": [
      "background-script.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "downloads",
    "activeTab",
    "tabs"
  ]
}