IG Downloader
Downloads videos and images from ig
Wat is IG Downloader?
IG Downloader is een Chrome-extensie ontwikkeld door matthewlam.js, en de belangrijkste functie is "Downloads videos and images from ig".
Extensie Screenshots
Download het CRX-bestand van de extensie IG Downloader
Download IG Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | gelbcoobaindiodaajafdoibjohgnnda |
| Officiële URL | https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda |
| Beschrijving | Downloads videos and images from ig |
| Bestandsgrootte | 10.96 KB |
| Aantal Installaties | 2,000 |
| Huidige Versie | 1.1.3 |
| Laatst Bijgewerkt | 2019-07-20 |
| Publicatiedatum | 2019-07-20 |
| Beoordeling | 3.00/5 Totaal 6 Beoordelingen |
| Ontwikkelaar | matthewlam.js |
| Betalingswijze | free |
| Extensiewebsite | http://www.github.com/matthewlamdotjs |
| Ondersteunde Talen | 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"
}
]
} | |