Text to Image

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

Wat is Text to Image?

Text to Image is een Chrome-extensie ontwikkeld door https://www.resolutedreamer.com, en de belangrijkste functie is "This extension replaces text urls that link to images with the actual images inline.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Text to Image

Download Text to Image-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Text to Image Text to Image
ID lpjgbeojljepdicbkcblehdglogbceck
Officiële URL https://chromewebstore.google.com/detail/text-to-image/lpjgbeojljepdicbkcblehdglogbceck
Beschrijving This extension replaces text urls that link to images with the actual images inline.
Bestandsgrootte 3.75 KB
Aantal Installaties 40
Huidige Versie 1.1.1
Laatst Bijgewerkt 2016-08-25
Publicatiedatum 2016-08-25
Beoordeling 4.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://www.resolutedreamer.com
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}