IG Downloader
Downloads videos and images from ig
Was ist IG Downloader?
IG Downloader ist eine Chrome-Erweiterung, die von matthewlam.js entwickelt wurde, und ihr Hauptmerkmal ist "Downloads videos and images from ig".
Erweiterungsscreenshots
IG Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie IG Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | gelbcoobaindiodaajafdoibjohgnnda |
Offizielle URL | https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda |
Beschreibung | Downloads videos and images from ig |
Dateigröße | 10.96 KB |
Installationsanzahl | 2,000 |
Aktuelle Version | 1.1.3 |
Letztes Update | 2019-07-20 |
Veröffentlichungsdatum | 2019-07-20 |
Bewertung | 3.00/5 Insgesamt 6 Bewertungen |
Entwickler | matthewlam.js |
Zahlungsart | free |
Erweiterungswebsite | http://www.github.com/matthewlamdotjs |
Unterstützte Sprachen | 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" } ] } |