5ch画像ダウンローダー

5ch画像ダウンローダー

2ch(5ch.net)のスレ上に貼られた画像を一括でダウンロードするソフトです。 5ch.net、open2ch.net、bbspink.comに対応してます。 画像をダウンロードしないで画像urlを表示する機能もあります。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "5ch画像ダウンローダー",
  "description": "5ch(2ch)から画像を一括でダウンロードするソフトです。",
  "version": "1.0.4",
  "icons": {
    "18": "icon.png"
  },
  "commands": {
    "upload": {
      "suggested_key": {
        "default": "Ctrl+Alt+M"
      },
      "description": "5ch画像ダウンローダ"
    }
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "*://*/*/",
    "downloads",
    "webRequest",
    "tabs",
    "contextMenus",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.5ch.net/*",
        "*://*.pinktower.com/*"
      ],
      "js": [
        "contentscripts.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{381f4a1c-2acd-452f-97aa-8c23a32621ed}"
    }
  }
}