LinkedImageDownloader

LinkedImageDownloader

リンク先の画像ファイルを一括保存します。 右クリックメニュー→「画像一括ダウンロード」で使用できます。

Merlin
Additional files are visible only to premium users

manifest.json


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