SVG2PNG

Save inline as .png files

Co to jest SVG2PNG?

SVG2PNG to rozszerzenie Chrome opracowane przez InEvent, a jego główną funkcją jest „Save inline as .png files”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia SVG2PNG

Pobierz pliki rozszerzeń SVG2PNG w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa SVG2PNG SVG2PNG
ID mjmflhaljgohpgdciblbbgkldlpclajd
Oficjalny URL https://chrome.google.com/webstore/detail/svg2png/mjmflhaljgohpgdciblbbgkldlpclajd
Opis Save inline as .png files
Rozmiar pliku 8.39 KB
Liczba instalacji 449
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2015-11-01
Data Publikacji 2015-11-01
Ocena 1.90/5 Łącznie 10 Oceny
Deweloper InEvent
Typ Płatności free
Obsługiwane Języki 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"
    ]
}