SVG 2 PNG

Convert and Save SVG images to .png from your browser.

SVG 2 PNG란 무엇입니까?

SVG 2 PNG은(는) shomaster에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Convert and Save SVG images to .png from your browser."입니다.

SVG 2 PNG 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Convert and Save SVG images to .png from your browser,
with your browser, and in your browser. No server side processing required!
Conversion from SVG to .png is processed with client side JavaScript.

SVG 2 PNG handles:
- .svg opened as the URL location
- Links to .svg files
- .svg loaded in img tags
- Embedded  tags on pages

Instructions:
Install extension from Chrome Extensions store.
Right-click on anything SVG 2 PNG handles and select "Save SVG as .png" from the menu.

Try an open .svg file, a link to an .svg file, a .svg img tag, or an embedded svg tag on a page.

The file should download as a file named "download.png".
Congratulations, you have successfully converted and saved from SVG to .png

Pro tip:
You can open an .svg file on your computer in your browser and use this extension on it to convert it to .png                    

확장 프로그램 기본 정보

이름 SVG 2 PNG SVG 2 PNG
ID gmhadpjpkkdkolmlhgelnoielopadndc
공식 URL https://chrome.google.com/webstore/detail/svg-2-png/gmhadpjpkkdkolmlhgelnoielopadndc
설명 Convert and Save SVG images to .png from your browser.
파일 크기 38.56 KB
설치 횟수 661
현재 버전 1.0
최근 업데이트 2014-03-14
출시 날짜 2014-03-14
평점 1.27/5 총 30 개의 평점
개발자 shomaster
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SVG 2 PNG",
    "description": "Convert and Save SVG images to .png from your browser.",
    "version": "1.0",
    "icons": {
        "16": "svg2png_sm.png",
        "48": "svg2png_md.png",
        "128": "svg2png_lg.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "rgbcolor.js",
            "StackBlur.js",
            "canvg.js",
            "svgrasterize.js"
        ]
    }
}