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.”。
扩展截图
下载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 扩展基本信息
| 名称 | |
| 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"
}
]
} | |