Text to Image

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

Text to Image là gì?

Text to Image là một tiện ích mở rộng Chrome được phát triển bởi https://www.resolutedreamer.com, và tính năng chính của nó là "This extension replaces text urls that link to images with the actual images inline.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Text to Image

Tải xuống các tệp mở rộng Text to Image dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Text to Image Text to Image
ID lpjgbeojljepdicbkcblehdglogbceck
URL Chính Thức https://chromewebstore.google.com/detail/text-to-image/lpjgbeojljepdicbkcblehdglogbceck
Mô tả This extension replaces text urls that link to images with the actual images inline.
Kích Thước Tệp 3.75 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2016-08-25
Ngày Phát Hành 2016-08-25
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://www.resolutedreamer.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}