SVG2PNG

Save inline as .png files

SVG2PNG란 무엇입니까?

SVG2PNG은(는) InEvent에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save inline as .png files"입니다.

확장 프로그램 스크린샷

screenshot

SVG2PNG 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}