Text to Image
Easily convert text to image with a custom background image.
Text to Image란 무엇입니까?
Text to Image은(는) leocompson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily convert text to image with a custom background image."입니다.
확장 프로그램 스크린샷
Text to Image 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Text to Image extension enables you to convert any text to an image file. Open the addon's interface, write your desired text, and apply formatting via the top toolbar. You can also add a desired background image or background color to the textarea. Once you are done, please press on the - Convert - button to save the result as a PNG file to your machine. The download path is the default download location on your machine. Please note that, if you resize the addon's interface, the resulting image will be resized as well. This addon uses an opensource library called - html2canvas - to convert an HTML element to image. Please visit this (https://github.com/niklasvh/html2canvas) GitHub repo to get more info about this conversion library. If you have a feature request or found a bug to report, please fill the bug report form on the addon's homepage (https://mybrowseraddon.com/text-to-image.html).
확장 프로그램 기본 정보
이름 | Text to Image |
ID | kgehbpolkgdnncpgdnoelhbghpdicanl |
공식 URL | https://chromewebstore.google.com/detail/text-to-image/kgehbpolkgdnncpgdnoelhbghpdicanl |
설명 | Easily convert text to image with a custom background image. |
파일 크기 | 254 KB |
설치 횟수 | 779 |
현재 버전 | 0.1.3 |
최근 업데이트 | 2022-03-09 |
출시 날짜 | 2020-08-04 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | leocompson |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://mybrowseraddon.com/text-to-image.html |
도움말 페이지 URL | https://mybrowseraddon.com/text-to-image.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.3", "manifest_version": 3, "offline_enabled": true, "name": "Text to Image", "short_name": "text-to-image", "permissions": [ "storage", "contextMenus" ], "homepage_url": "https:\/\/mybrowseraddon.com\/text-to-image.html", "description": "Easily convert text to image with a custom background image.", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Text to Image", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |