SVG2PNG

Save inline as .png files

Что такое SVG2PNG?

SVG2PNG - это расширение Chrome, разработанное InEvent, и его основная функция - "Save inline as .png files".

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

screenshot

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

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

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

                        A simple Chrome plugin which converts a  element from a webpage to a .png file.

Features:

- Allows you to choose your file name for every single conversion.
- Automatically generates retina size files (1x, 2x and 3x).
- Built-in right within your context menu for easy access.

Additional details can be found at: https://github.com/pedro380085/SVG2PNG                    

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

Название SVG2PNG SVG2PNG
ID mjmflhaljgohpgdciblbbgkldlpclajd
Официальный URL https://chrome.google.com/webstore/detail/svg2png/mjmflhaljgohpgdciblbbgkldlpclajd
Описание Save inline as .png files
Размер файла 8.39 KB
Количество установок 449
Текущая Версия 1.1
Последнее Обновление 2015-11-01
Дата публикации 2015-11-01
Рейтинг 1.90/5 Всего 10 оценок
Разработчик InEvent
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SVG2PNG",
    "description": "Save inline  as .png files",
    "version": "1.1",
    "icons": {
        "16": "split-16.png",
        "48": "split-48.png",
        "128": "split-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "unlimitedStorage",
        "notifications",
        "activeTab"
    ]
}