GitHub Image Preview

Preview issue images on GitHub. https://github.com/samkessaram/git-preview

Что такое GitHub Image Preview?

GitHub Image Preview - это расширение Chrome, разработанное samkessaram, и его основная функция - "Preview issue images on GitHub. https://github.com/samkessaram/git-preview".

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

screenshot

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

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

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

                        Preview images on GitHub from the issues list view. An icon is added to any issue that contains images or screenshots. Click it to open a carousel and cycle through the images. Inspired by similar functionality in Reddit Enhancement Suite.                    

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

Название GitHub Image Preview GitHub Image Preview
ID jkappkhadcobonipjjgfkcmnkpapegma
Официальный URL https://chromewebstore.google.com/detail/github-image-preview/jkappkhadcobonipjjgfkcmnkpapegma
Описание Preview issue images on GitHub. https://github.com/samkessaram/git-preview
Размер файла 37.45 KB
Количество установок 15
Текущая Версия 0.1.6
Последнее Обновление 2018-01-04
Дата публикации 2018-01-04
Рейтинг 5.00/5 Всего 1 оценок
Разработчик samkessaram
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/samkessaram/git-preview
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Image Preview",
    "author": "Sam Kessaram",
    "version": "0.1.6",
    "description": "Preview issue images on GitHub. https:\/\/github.com\/samkessaram\/git-preview",
    "icons": {
        "128": "camera.png"
    },
    "web_accessible_resources": [
        "camera.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "scripts.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ]
}