Text to Image

This extension replaces text urls that link to images with the actual images inline.

What is Text to Image?

Text to Image is a Chrome extension developed by https://www.resolutedreamer.com, and its main feature is "This extension replaces text urls that link to images with the actual images inline.".

Extension Screenshots

screenshot
screenshot

Download Text to Image Extension CRX File

Download Text to Image extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Version 1.1.1: Fixed bug where all text in an element would get overwritten instead of only the url for the image. Added a line break before the image for readability. Removed debug messages from console.

Version 1.0: Basic functionality                    

Extension Basic Information

Name Text to Image Text to Image
ID lpjgbeojljepdicbkcblehdglogbceck
Official URL https://chromewebstore.google.com/detail/text-to-image/lpjgbeojljepdicbkcblehdglogbceck
Description This extension replaces text urls that link to images with the actual images inline.
File Size 3.75 KB
Installation Count 40
Current Version 1.1.1
Last Updated 2016-08-25
Publish Date 2016-08-25
Rating 4.00/5 Total 2 Ratings
Developer https://www.resolutedreamer.com
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text to Image",
    "description": "This extension replaces text urls that link to images with the actual images inline.",
    "version": "1.1.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}