IG Downloader
Downloads videos and images from ig
Cos'è IG Downloader?
IG Downloader è un'estensione di Chrome sviluppata da matthewlam.js, e la sua funzione principale è "Downloads videos and images from ig".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione IG Downloader
Scarica i file di estensione IG Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | gelbcoobaindiodaajafdoibjohgnnda |
URL Ufficiale | https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda |
Descrizione | Downloads videos and images from ig |
Dimensione del File | 10.96 KB |
Conteggio Installazioni | 2,000 |
Versione Corrente | 1.1.3 |
Ultimo Aggiornamento | 2019-07-20 |
Data di Pubblicazione | 2019-07-20 |
Valutazione | 3.00/5 Totale 6 Valutazioni |
Sviluppatore | matthewlam.js |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.github.com/matthewlamdotjs |
Lingue Supportate | 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" } ] } |