IG Downloader
Downloads videos and images from ig
IG Downloaderとは何ですか?
IG Downloaderはmatthewlam.jsによって開発されたChromeの拡張機能で、その主な機能は「Downloads videos and images from ig」です。
拡張機能のスクリーンショット
IG Downloader拡張機能のCRXファイルをダウンロード
IG Downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
After installing the extension, navigate to IG's website in a new tab and log in. From there you have the following options: Download regular IG posts images/videos: -click on a link to a post anywhere IG to open it. -a confirm dialog should pop up asking if you want to download the files. Download IG stories: -click on a story to open it in the story viewer. -click start download button on top left of page and stories should start downloading as they are played. -click stop download button on top left of page to stop downloading.
拡張機能の基本情報
名前 | |
ID | gelbcoobaindiodaajafdoibjohgnnda |
公式URL | https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda |
説明 | Downloads videos and images from ig |
ファイルサイズ | 10.96 KB |
インストール数 | 2,000 |
現在のバージョン | 1.1.3 |
最終更新日 | 2019-07-20 |
公開日 | 2019-07-20 |
評価 | 3.00/5 合計 6 レビュー |
開発者 | matthewlam.js |
支払い方法 | free |
拡張機能のウェブサイト | http://www.github.com/matthewlamdotjs |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "IG Downloader", "description": "Downloads videos and images from ig", "version": "1.1.3", "author": "Matthew Lam", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.instagram.com\/*" ], "js": [ "posts.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/*.instagram.com\/*" ], "js": [ "stories.js" ], "run_at": "document_end" } ] } |