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.".
Снимки экрана расширения
Скачать файл CRX расширения Text to Image
Скачайте файлы расширений 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"
}
]
} | |