Instagram Downloader
Download media from Instagram
Was ist Instagram Downloader?
Instagram Downloader ist eine Chrome-Erweiterung, die von samagragupta entwickelt wurde, und ihr Hauptmerkmal ist "Download media from Instagram".
Erweiterungsscreenshots
Instagram Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Instagram 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
Download any image or Video from Instagram. Just one click to go ahead !!!
Grundlegende Informationen zur Erweiterung
Name | |
ID | ciodnolkjfhjhpcdaehfoilnbinkhbca |
Offizielle URL | https://chrome.google.com/webstore/detail/instagram-downloader/ciodnolkjfhjhpcdaehfoilnbinkhbca |
Beschreibung | Download media from Instagram |
Dateigröße | 31.01 KB |
Installationsanzahl | 9,000 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2020-10-06 |
Veröffentlichungsdatum | 2020-10-06 |
Bewertung | 2.60/5 Insgesamt 5 Bewertungen |
Entwickler | samagragupta |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "en", "name": "Instagram Downloader", "description": "Download media from Instagram", "version": "1.0.0", "browser_action": { "default_icon": { "19": "icons\/insta.jpg", "38": "icons\/insta.jpg" } }, "icons": { "16": "icons\/insta.jpg", "48": "icons\/insta.jpg", "128": "icons\/insta.jpg" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "script.js" ], "css": [ "style.css" ], "matches": [ "*:\/\/*.instagram.com\/*" ] } ], "permissions": [ "tabs", "downloads", "storage", "http:\/\/www.instagram.com\/*", "https:\/\/www.instagram.com\/*" ], "options_ui": { "page": "options.html", "open_in_tab": true } } |