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文件
下載Text to Image擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |