Text to Image

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

ما هو Text to Image؟

Text to Image هو إضافة Chrome تم تطويرها بواسطة https://www.resolutedreamer.com، والميزة الرئيسية لها هي "This extension replaces text urls that link to images with the actual images inline.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Text to Image

قم بتنزيل ملفات الامتداد Text to Image بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Text to Image Text to Image
ID lpjgbeojljepdicbkcblehdglogbceck
عنوان URL الرسمي https://chromewebstore.google.com/detail/text-to-image/lpjgbeojljepdicbkcblehdglogbceck
الوصف This extension replaces text urls that link to images with the actual images inline.
حجم الملف 3.75 KB
عدد التثبيتات 40
النسخة الحالية 1.1.1
آخر تحديث 2016-08-25
تاريخ النشر 2016-08-25
تقييم 4.00/5 مجموع تقييمات 2
المطور https://www.resolutedreamer.com
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
        }
    ]
}