GitHub Inline SVG

Shows an inline preview of SVG files on GitHub

Что такое GitHub Inline SVG?

GitHub Inline SVG - это расширение Chrome, разработанное Zach Bruggeman, и его основная функция - "Shows an inline preview of SVG files on GitHub".

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

screenshot

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

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

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

                        Shows an inline preview of SVG files on GitHub. You can toggle between viewing the image, or the SVG code. Nifty!                    

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

Название GitHub Inline SVG GitHub Inline SVG
ID jbfbnojdibndlopjgadibhcphchdbfkh
Официальный URL https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh
Описание Shows an inline preview of SVG files on GitHub
Размер файла 10.42 KB
Количество установок 289
Текущая Версия 0.0.3
Последнее Обновление 2014-08-26
Дата публикации 2014-08-26
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Zach Bruggeman
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/remixz/gh-inline-svg
URL страницы помощи https://github.com/remixz/gh-inline-svg/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Inline SVG",
    "description": "Shows an inline preview of SVG files on GitHub",
    "version": "0.0.3",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*"
    ],
    "icons": {
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}