Instagramクリック画像ダウンローダ

Instagramクリック画像ダウンローダ

Instagramの画像ダウンローダです。 Instagramの記事単体上の画像を落とします。 Instagramの記事単体上でアイコンをクリックすると そのInstagram上の画像をダウンロードします。 ダウンロードしないでInstagramの画像urlを取得することもできます。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Instagramクリック画像ダウンローダ",
  "description": "Instagramの画像をダウンロードするソフトです。",
  "version": "1.0.1",
  "icons": {
    "18": "icon.png"
  },
  "permissions": [
    "*://*/*",
    "downloads",
    "tabs",
    "storage"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.instagram.com/*"
      ],
      "all_frames": true,
      "js": [
        "contentscripts.js"
      ]
    }
  ]
}