画像一括ダウンロード click(Image download)

画像一括ダウンロード click(Image download)

WEBページに表示されている画像を別ページで一覧表示して、クリックで視覚的にダウンロードする事が出来るようになります。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "short_name": "__MSG_appName__",
  "version": "1.0.3",
  "minimum_chrome_version": "59",
  "default_locale": "ja",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "img/a16.png",
    "32": "img/a32.png",
    "48": "img/a48.png",
    "128": "img/a128.png"
  },
  "homepage_url": "https://allis.jp/",
  "author": "allis.jp Ltd.",
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "img/a16.png",
    "img/a32.png"
  ],
  "browser_action": {
    "default_icon": {
      "19": "img/a16.png",
      "38": "img/a32.png"
    },
    "default_title": "このページの画像をダウンロードする"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "<all_urls>",
        "*://*/*"
      ],
      "js": [
        "js/jquery.js",
        "js/jquery.crypt.js",
        "func.js",
        "cs.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/jquery.crypt.js",
      "func.js",
      "background.js"
    ],
    "persistent": true
  },
  "options_page": "options/options.html"
}