Image Downloader

Download any image on your website page in one click!

Что такое Image Downloader?

Image Downloader - это расширение Chrome, разработанное tiffanycheck.check, и его основная функция - "Download any image on your website page in one click!".

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

screenshot
screenshot

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

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

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

                        The extension gives the user the option to download images in different formats: PNG, JPG, SVG, WEBP                    

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

Название Image Downloader Image Downloader
ID fnelomgkbbanddlflhgphgkijfeoehfb
Официальный URL https://chrome.google.com/webstore/detail/image-downloader/fnelomgkbbanddlflhgphgkijfeoehfb
Описание Download any image on your website page in one click!
Размер файла 19.54 KB
Количество установок 3,519
Текущая Версия 1.1
Последнее Обновление 2022-12-05
Дата публикации 2022-11-28
Разработчик tiffanycheck.check
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://home.xcxologyda.xyz/
URL страницы помощи https://home.xcxologyda.xyz/contact.html
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "logo.png",
        "default_title": "Image Downloader",
        "default_popup": "popup.html"
    },
    "description": "Download any image on your website page in one click!",
    "icons": {
        "128": "logo.png"
    },
    "manifest_version": 3,
    "name": "Image Downloader",
    "version": "1.1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}