Text to Image

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

什麼是Text to Image?

Text to Image是由https://www.resolutedreamer.com開發的Chrome擴展程式,該擴展的主要功能是“This extension replaces text urls that link to images with the actual images inline.”。

擴展截圖

screenshot
screenshot

下載Text to Image擴展crx文件

下載Text to Image擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}