twitter画像ダウンローダ

twitter画像ダウンローダ

twitterの画像ダウンローダです。 twitterのツイートページ(urlにstatusがあるページ)でアイコンをクリックすると そのツイート上の画像を全てダウンロードします。 ダウンロードしないでtwitterの画像urlを取得することもできます。 取得された画像urlは新しいタブのhtml上に表示されます。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "twitter画像ダウンローダ",
  "description": "twitterの画像ダウンローダ。twitterの特定アカウントの画像を一括で落とす。",
  "version": "1.0.9",
  "icons": {
    "18": "icon.png"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "alarms",
    "tabs",
    "downloads",
    "webRequest"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "contentscripts.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{df6853a4-768a-46dc-8f42-fbb516e74d7d}"
    }
  }
}