SVG link viewer

Show previews of all links to SVGs

Что такое SVG link viewer?

SVG link viewer - это расширение Chrome, разработанное Unknown, и его основная функция - "Show previews of all links to SVGs".

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

screenshot

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

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

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

                        Searches the DOM for links containing SVGs and displays a preview of that SVG below the link.                    

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

Название SVG link viewer SVG link viewer
ID lnggninmgmlcfbancjjfiplammfeeihj
Официальный URL https://chromewebstore.google.com/detail/svg-link-viewer/lnggninmgmlcfbancjjfiplammfeeihj
Описание Show previews of all links to SVGs
Размер файла 34.06 KB
Количество установок 694
Текущая Версия 2
Последнее Обновление 2015-10-26
Дата публикации 2015-10-26
Рейтинг 1.50/5 Всего 6 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SVG link viewer",
    "manifest_version": 2,
    "version": "2",
    "description": "Show previews of all links to SVGs",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "name": "Preview SVGs",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}