Save SVG as PNG
Save SVG images as PNG. Navigate to an .svg file, right click on it and click on the context menu item 'Save SVG as PNG.
Save SVG as PNG란 무엇입니까?
Save SVG as PNG은(는) Einar Egilsson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save SVG images as PNG. Navigate to an .svg file, right click on it and click on the context menu item 'Save SVG as PNG."입니다.
확장 프로그램 스크린샷
Save SVG as PNG 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Lets you click on the extension icon or right click on an .svg file and choose Save SVG as PNG. You will be able to specify the desired width of the rendered PNG image. The image will be opened in a new tab where you can see it and right click on it to save it to disk. This only works if you have the .svg file open in its own tab, you can't click on a svg file that's embedded in a page, you would first have to right click on it, choose "Open image in new tab" and then go to that tab to convert it to png.
확장 프로그램 기본 정보
이름 | Save SVG as PNG |
ID | dihlbjcdgfoehmhbklciidmolbmabkki |
공식 URL | https://chromewebstore.google.com/detail/save-svg-as-png/dihlbjcdgfoehmhbklciidmolbmabkki |
설명 | Save SVG images as PNG. Navigate to an .svg file, right click on it and click on the context menu item 'Save SVG as PNG. |
파일 크기 | 99.75 KB |
설치 횟수 | 13,139 |
현재 버전 | 1.0 |
최근 업데이트 | 2018-08-22 |
출시 날짜 | 2018-08-22 |
평점 | 2.61/5 총 57 개의 평점 |
개발자 | Einar Egilsson |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Save SVG as PNG", "version": "1.0", "author": "Einar Egilsson", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "description": "Save SVG images as PNG. Navigate to an .svg file, right click on it and click on the context menu item 'Save SVG as PNG.", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Click to save current SVG as PNG" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*.svg", "http:\/\/*\/*.svg", "file:\/\/*\/*.svg" ], "js": [ "content.js" ] } ], "permissions": [ "contextMenus", "tabs" ] } |