Photo Downloader

Save images from social photo sites.

Что такое Photo Downloader?

Photo Downloader - это расширение Chrome, разработанное Mihai Parparita, и его основная функция - "Save images from social photo sites.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Photo Downloader

Скачайте файлы расширений Photo Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Chrome extension to help with downloading of images from social photo sites.

* Uses minimal Chrome extension permissions (by using the activeTab option)
* Uses minimal Chrome resources (via the the declarativeContent API)
* Generates filenames based on the caption of the image

Currently only works on permalink pages.                    

Основная информация о расширении

Название Photo Downloader Photo Downloader
ID akgbekdpgegfglbmldaljbeihfcgbofl
Официальный URL https://chromewebstore.google.com/detail/photo-downloader/akgbekdpgegfglbmldaljbeihfcgbofl
Описание Save images from social photo sites.
Размер файла 12.23 KB
Количество установок 5,372
Текущая Версия 1.1
Последнее Обновление 2023-07-20
Дата публикации 2018-01-29
Рейтинг 2.00/5 Всего 5 оценок
Разработчик Mihai Parparita
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/mihaip/instagram-downloader
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "name": "Photo Downloader",
    "description": "Save images from social photo sites.",
    "icons": {
        "128": "icon-128.png"
    },
    "page_action": {
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png"
        },
        "default_title": "Download Image"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "downloads"
    ],
    "version": "1.1"
}