Text to Image

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

Vad är Text to Image?

Text to Image är en Chrome-tillägg utvecklad av https://www.resolutedreamer.com, och dess huvudfunktion är "This extension replaces text urls that link to images with the actual images inline.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Text to Image-förlängningens CRX-fil

Ladda ner Text to Image-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Text to Image Text to Image
ID lpjgbeojljepdicbkcblehdglogbceck
Officiell webbadress https://chromewebstore.google.com/detail/text-to-image/lpjgbeojljepdicbkcblehdglogbceck
Beskrivning This extension replaces text urls that link to images with the actual images inline.
Filstorlek 3.75 KB
Antal Installationer 40
Aktuell Version 1.1.1
Senast Uppdaterad 2016-08-25
Publiceringsdatum 2016-08-25
Betyg 4.00/5 Totalt 2 Betyg
Utvecklare https://www.resolutedreamer.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}