Text to Image

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

Apa itu Text to Image?

Text to Image adalah ekstensi Chrome yang dikembangkan oleh https://www.resolutedreamer.com, dan fitur utamanya adalah "This extension replaces text urls that link to images with the actual images inline.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Text to Image

Unduh file ekstensi Text to Image dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Text to Image Text to Image
ID lpjgbeojljepdicbkcblehdglogbceck
URL Resmi https://chromewebstore.google.com/detail/text-to-image/lpjgbeojljepdicbkcblehdglogbceck
Deskripsi This extension replaces text urls that link to images with the actual images inline.
Ukuran File 3.75 KB
Jumlah Instalasi 40
Versi Saat Ini 1.1.1
Terakhir Diperbarui 2016-08-25
Tanggal Publikasi 2016-08-25
Penilaian 4.00/5 Total 2 Penilaian
Pengembang https://www.resolutedreamer.com
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}