AT Plus
Enhancements for your Airtables.
Что такое AT Plus?
AT Plus - это расширение Chrome, разработанное https://mikedeltito.com, и его основная функция - "Enhancements for your Airtables.".
Снимки экрана расширения
Скачать файл CRX расширения AT Plus
Скачайте файлы расширений AT Plus в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Adds the following features to Airtable: * Makes the expanded cell popup resizable, which can help with readability in long text fields. * Adds a Markdown preview function! You can add/edit Markdown in an expanded rich-text field and toggle a preview. The preview can be also be resized.
Основная информация о расширении
Название | AT Plus |
ID | iedchkfcjehmdfkjadelkgnbfapoolid |
Официальный URL | https://chromewebstore.google.com/detail/at-plus/iedchkfcjehmdfkjadelkgnbfapoolid |
Описание | Enhancements for your Airtables. |
Размер файла | 36.97 KB |
Количество установок | 19 |
Текущая Версия | 0.0.4 |
Последнее Обновление | 2018-05-21 |
Дата публикации | 2018-05-21 |
Разработчик | https://mikedeltito.com |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "version": "0.0.4", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/airtable.com\/*" ], "css": [ "css\/expanded-resizable.css", "css\/markdown-viewer.css" ], "js": [ "vendor\/js\/marked.js", "scripts\/expanded-resizable.js", "scripts\/markdown-viewer.js" ] } ], "web_accessible_resources": [ "images\/*" ] } |