Text to Image

Easily convert text to image with a custom background image.

¿Qué es Text to Image?

Text to Image es una extensión de Chrome desarrollada por leocompson, y su función principal es "Easily convert text to image with a custom background image.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Text to Image

Descarga archivos de extensión Text to Image en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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).                    

Información Básica de la Extensión

Nombre Text to Image Text to Image
ID kgehbpolkgdnncpgdnoelhbghpdicanl
URL Oficial https://chromewebstore.google.com/detail/text-to-image/kgehbpolkgdnncpgdnoelhbghpdicanl
Descripción Easily convert text to image with a custom background image.
Tamaño del Archivo 254 KB
Cantidad de Instalaciones 779
Versión Actual 0.1.3
Última Actualización 2022-03-09
Fecha de Publicación 2020-08-04
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador leocompson
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://mybrowseraddon.com/text-to-image.html
URL de la Página de Ayuda https://mybrowseraddon.com/text-to-image.html
Idiomas Soportados 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"
    }
}