Text to Image

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

Co to jest Text to Image?

Text to Image to rozszerzenie Chrome opracowane przez https://www.resolutedreamer.com, a jego główną funkcją jest „This extension replaces text urls that link to images with the actual images inline.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Text to Image

Pobierz pliki rozszerzeń Text to Image w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Text to Image Text to Image
ID lpjgbeojljepdicbkcblehdglogbceck
Oficjalny URL https://chromewebstore.google.com/detail/text-to-image/lpjgbeojljepdicbkcblehdglogbceck
Opis This extension replaces text urls that link to images with the actual images inline.
Rozmiar pliku 3.75 KB
Liczba instalacji 40
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2016-08-25
Data Publikacji 2016-08-25
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper https://www.resolutedreamer.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}