Instagram Downloader
Download media from Instagram
Что такое Instagram Downloader?
Instagram Downloader - это расширение Chrome, разработанное samagragupta, и его основная функция - "Download media from Instagram".
Снимки экрана расширения
Скачать файл CRX расширения Instagram Downloader
Скачайте файлы расширений Instagram Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Download any image or Video from Instagram. Just one click to go ahead !!!
Основная информация о расширении
Название | |
ID | ciodnolkjfhjhpcdaehfoilnbinkhbca |
Официальный URL | https://chrome.google.com/webstore/detail/instagram-downloader/ciodnolkjfhjhpcdaehfoilnbinkhbca |
Описание | Download media from Instagram |
Размер файла | 31.01 KB |
Количество установок | 9,000 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2020-10-06 |
Дата публикации | 2020-10-06 |
Рейтинг | 2.60/5 Всего 5 оценок |
Разработчик | samagragupta |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "en", "name": "Instagram Downloader", "description": "Download media from Instagram", "version": "1.0.0", "browser_action": { "default_icon": { "19": "icons\/insta.jpg", "38": "icons\/insta.jpg" } }, "icons": { "16": "icons\/insta.jpg", "48": "icons\/insta.jpg", "128": "icons\/insta.jpg" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "script.js" ], "css": [ "style.css" ], "matches": [ "*:\/\/*.instagram.com\/*" ] } ], "permissions": [ "tabs", "downloads", "storage", "http:\/\/www.instagram.com\/*", "https:\/\/www.instagram.com\/*" ], "options_ui": { "page": "options.html", "open_in_tab": true } } |