Image Compressor

Download compressed image directly from the current tab just with a right click! :)

Что такое Image Compressor?

Image Compressor - это расширение Chrome, разработанное Marco Giannini, и его основная функция - "Download compressed image directly from the current tab just with a right click! :)".

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

screenshot

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

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

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

                        This light extension let you download with just two click a compressed version of your favourite image. 
This is wonderful for make your website load faster than ever! 

For download an image:
1) just bring your mouse over the image you want to download and... right click!
2) Bum! That's it! You can see "Download compressed version". Click it and wait 5 or 6 seconds!

CHANGELOG:
1.0.1 CHANGE ALERT BEFORE START THE DOWNLOAD OF THE COMPRESSED IMAGE.
1.0.0 GO LIVE!                    

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

Название Image Compressor Image Compressor
ID jellomkphijifcoeoefbniimkdehcjfl
Официальный URL https://chromewebstore.google.com/detail/image-compressor/jellomkphijifcoeoefbniimkdehcjfl
Описание Download compressed image directly from the current tab just with a right click! :)
Размер файла 45.44 KB
Количество установок 1,016
Текущая Версия 1.0.1
Последнее Обновление 2017-03-12
Дата публикации 2017-03-12
Рейтинг 3.24/5 Всего 17 оценок
Разработчик Marco Giannini
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image Compressor",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Download compressed image directly from the current tab just with a right click! :)",
    "icons": {
        "16": "img\/x16.png",
        "48": "img\/x48.png",
        "128": "img\/x128.png"
    },
    "permissions": [
        "downloads",
        "contextMenus"
    ],
    "background": {
        "persistent": false,
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.js",
                "js\/main.js"
            ],
            "css": [
                "css\/main.css"
            ]
        }
    ]
}