IG Downloader
Downloads videos and images from ig
Что такое IG Downloader?
IG Downloader - это расширение Chrome, разработанное matthewlam.js, и его основная функция - "Downloads videos and images from ig".
Снимки экрана расширения
Скачать файл CRX расширения IG Downloader
Скачайте файлы расширений IG Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | gelbcoobaindiodaajafdoibjohgnnda |
Официальный URL | https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda |
Описание | Downloads videos and images from ig |
Размер файла | 10.96 KB |
Количество установок | 2,000 |
Текущая Версия | 1.1.3 |
Последнее Обновление | 2019-07-20 |
Дата публикации | 2019-07-20 |
Рейтинг | 3.00/5 Всего 6 оценок |
Разработчик | matthewlam.js |
Тип оплаты | free |
Официальный сайт расширения | http://www.github.com/matthewlamdotjs |
Поддерживаемые языки | 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" } ] } |