Text to Image
Easily convert text to image with a custom background image.
Text to Image là gì?
Text to Image là một tiện ích mở rộng Chrome được phát triển bởi leocompson, và tính năng chính của nó là "Easily convert text to image with a custom background image.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Text to Image
Tải xuống các tệp mở rộng Text to Image dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Text to Image |
ID | kgehbpolkgdnncpgdnoelhbghpdicanl |
URL Chính Thức | https://chromewebstore.google.com/detail/text-to-image/kgehbpolkgdnncpgdnoelhbghpdicanl |
Mô tả | Easily convert text to image with a custom background image. |
Kích Thước Tệp | 254 KB |
Số Lần Cài Đặt | 779 |
Phiên Bản Hiện Tại | 0.1.3 |
Cập Nhật Lần Cuối | 2022-03-09 |
Ngày Phát Hành | 2020-08-04 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | leocompson |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://mybrowseraddon.com/text-to-image.html |
URL Trang Trợ Giúp | https://mybrowseraddon.com/text-to-image.html |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |