IG Downloader
Downloads videos and images from ig
O que é IG Downloader?
IG Downloader é uma extensão do Chrome desenvolvida por matthewlam.js, e sua principal característica é "Downloads videos and images from ig".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão IG Downloader
Baixe arquivos de extensão IG Downloader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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. Informações Básicas da Extensão
| Nome | |
| ID | gelbcoobaindiodaajafdoibjohgnnda |
| URL Oficial | https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda |
| Descrição | Downloads videos and images from ig |
| Tamanho do Arquivo | 10.96 KB |
| Contagem de Instalações | 2,000 |
| Versão Atual | 1.1.3 |
| Última Atualização | 2019-07-20 |
| Data de Publicação | 2019-07-20 |
| Classificação | 3.00/5 Total de 6 Avaliações |
| Desenvolvedor | matthewlam.js |
| Tipo de Pagamento | free |
| Site da Extensão | http://www.github.com/matthewlamdotjs |
| Idiomas Suportados | 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"
}
]
} | |