BulkImagesFetcher

BulkImagesFetcher

Chromeで表示中のWebページ内にある画像を取得できるChrome拡張です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BulkImagesFetcher",
  "version": "1.0",
  "description": "Chromeで表示中のWebページ内にある画像を取得できるChrome拡張です。",
  "browser_action": {
    "default_icon": "icon/icon64.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon/icon16.png",
    "32": "icon/icon32.png",
    "64": "icon/icon64.png",
    "128": "icon/icon128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/",
        "https://*/"
      ],
      "js": [
        "js/jquery-2.1.3.min.js",
        "js/util.js",
        "js/popup.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/jquery-2.1.3.min.js",
      "js/util.js",
      "js/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/"
  ]
}