Rich Image Previewer

Extension adds the Rich UI for the open image in tab. It runs with only open the image in tab.

Что такое Rich Image Previewer?

Rich Image Previewer - это расширение Chrome, разработанное Yoshifumi Shiiba, и его основная функция - "Extension adds the Rich UI for the open image in tab. It runs with only open the image in tab.".

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

screenshot

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

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

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

                        This extension adds the Rich UI for the open image in tab mode on Google Chrome.
It does not eat RAM on no using because runs only open an image on tab.

The MIT License
https://github.com/YoshifumiShiiba/RichImagePreviewer                    

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

Название Rich Image Previewer Rich Image Previewer
ID bnonggkheicloopdmbkkomefmokffafi
Официальный URL https://chromewebstore.google.com/detail/rich-image-previewer/bnonggkheicloopdmbkkomefmokffafi
Описание Extension adds the Rich UI for the open image in tab. It runs with only open the image in tab.
Размер файла 317 KB
Количество установок 70
Текущая Версия 1.0.2
Последнее Обновление 2013-04-13
Дата публикации 2013-04-13
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Yoshifumi Shiiba
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Extension adds the Rich UI for the open image in tab. It runs with only open the image in tab.",
    "name": "Rich Image Previewer",
    "minimum_chrome_version": "20.0.0.0",
    "icons": {
        "48": "imageinfo-48.png",
        "128": "imageinfo-128.png",
        "16": "imageinfo-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*.jpg",
                "https:\/\/*\/*.jpg",
                "http:\/\/*\/*.jpeg",
                "https:\/\/*\/*.jpeg",
                "http:\/\/*\/*.gif",
                "https:\/\/*\/*.gif",
                "http:\/\/*\/*.png",
                "https:\/\/*\/*.png"
            ],
            "js": [
                "jquery-1.9.1.js",
                "jquery-ui-1.10.2.custom.min.js",
                "main.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "1.0.2"
}