DataURI2Image
DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
DataURI2Image란 무엇입니까?
DataURI2Image은(는) shoito에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it."입니다.
확장 프로그램 스크린샷
DataURI2Image 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
How to use 1. Select data URI scheme on Web site like gist, blog ex) data:image/png;base64,iVBORw0KGgoAA... 2. Click "Data URI to Image" from context menu Data URI scheme samples https://gist.github.com/shoito/5868550
확장 프로그램 기본 정보
이름 | DataURI2Image |
ID | bohclmjbokloadmjfmdoahocaffhkpgc |
공식 URL | https://chromewebstore.google.com/detail/datauri2image/bohclmjbokloadmjfmdoahocaffhkpgc |
설명 | DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it. |
파일 크기 | 92.35 KB |
설치 횟수 | 41 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2019-10-25 |
출시 날짜 | 2019-10-24 |
평점 | 4.80/5 총 5 개의 평점 |
개발자 | shoito |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.0.0", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "ja", "background": { "persistent": false, "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "components\/jquery\/jquery.js", "scripts\/contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ] } |