WorkFlowy Link Preview
Link Previewer for https://workflowy.com/
Что такое WorkFlowy Link Preview?
WorkFlowy Link Preview - это расширение Chrome, разработанное Roman Chukhan | @roman_chukhan, и его основная функция - "Link Previewer for https://workflowy.com/".
Снимки экрана расширения
Скачать файл CRX расширения WorkFlowy Link Preview
Скачайте файлы расширений WorkFlowy Link Preview в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This Google Chrome browser extension allows users to preview any URL inside a WorkFlowy bullet node. The extension fetches provided URL meta tags data (image, title and description) in the background process and embeds it to the WorkFlowy bullet node. Alongside with URL preview, this extension allows users to preview images and gifs. Usage: Preview any URL using the following syntax: !(your URL goes here inside the round brackets) For example: !(https://www.booking.com/Share-Tz4hNz) or image link: !(https://r-cf.bstatic.com/images/hotel/max1024x768/190/190867355.jpg) Version v1.1.0 update: - change preview layout + highlight embedded area with the vertical line - display embedded image according to its aspect ratio Version v1.1.1 update: - extension is available for WorkFlowy Beta 🙌 Extension source code is open-sourced here: https://github.com/karatsuba/workflowy-link-preview
Основная информация о расширении
Название | |
ID | fljjakgbhacdbaakanomobomelbkjafm |
Официальный URL | https://chromewebstore.google.com/detail/workflowy-link-preview/fljjakgbhacdbaakanomobomelbkjafm |
Описание | Link Previewer for https://workflowy.com/ |
Размер файла | 89.99 KB |
Количество установок | 248 |
Текущая Версия | 1.1.1 |
Последнее Обновление | 2020-06-25 |
Дата публикации | 2020-06-24 |
Рейтинг | 3.86/5 Всего 7 оценок |
Разработчик | Roman Chukhan | @roman_chukhan |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://twitter.com/roman_chukhan |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WorkFlowy Link Preview", "description": "Link Previewer for https:\/\/workflowy.com\/", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.workflowy.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "manifest_version": 2, "version": "1.1.1" } |