Text to Image

Easily convert text to image with a custom background image.

Text to Image क्या है?

Text to Image leocompson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily convert text to image with a custom background image."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Text to Image एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    }
}