Instagram Downloader
Download images/videos from instagram. No ads. Enjoy :)
Was ist Instagram Downloader?
Instagram Downloader ist eine Chrome-Erweiterung, die von cjkumaresh entwickelt wurde, und ihr Hauptmerkmal ist "Download images/videos from instagram. No ads. Enjoy :)".
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
This extension will allow the users to download high resolution images and videos from instagram
Features:
1. Download specific image in a profile (e.g: https://www.instagram.com/p/BHCPdEcgpVr/) or (e.g: https://www.instagram.com/p/BHCPdEcgpVr/?taken-by=samanthaprabhuofficial)
2. Download all images from a profile (e.g: https://www.instagram.com/shrutzhaasan/)
3. Download all images in home page (e.g: https://www.instagram.com)
4. Download specific video in a profile (e.g: https://www.instagram.com/p/BHW-JtggF9X/) or (e.g: https://www.instagram.com/p/BHW-JtggF9X/?taken-by=marloeshorst)
5. Download all videos from home page (e.g: https://www.instagram.com)
Note:
Downloading all videos for a profile is not implemented yet
If you like this plugin. Please star this project on Github
https://github.com/cjkumaresh/instagram-downloader-chrome Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jhbapkbempcealhabaeicidlgbmhafmk |
| Offizielle URL | https://chromewebstore.google.com/detail/instagram-downloader/jhbapkbempcealhabaeicidlgbmhafmk |
| Beschreibung | Download images/videos from instagram. No ads. Enjoy :) |
| Dateigröße | 88.3 KB |
| Installationsanzahl | 1,314 |
| Aktuelle Version | 1.0.2 |
| Letztes Update | 2023-12-20 |
| Veröffentlichungsdatum | 2023-12-20 |
| Bewertung | 3.92/5 Insgesamt 36 Bewertungen |
| Entwickler | cjkumaresh |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/cjkumaresh/instagram-downloader-chrome |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Instagram Downloader",
"description": "Download images\/videos from instagram. No ads. Enjoy :)",
"version": "1.0.2",
"short_name": "Instagram Download",
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.instagram.com\/*"
],
"js": [
"content.js"
],
"all_frames": false
}
],
"page_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
}
} | |