Airtable Rich Text Editor

This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…

Что такое Airtable Rich Text Editor?

Airtable Rich Text Editor - это расширение Chrome, разработанное savetonotion.so, и его основная функция - "This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Airtable Rich Text Editor

Скачайте файлы расширений Airtable Rich Text Editor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension extend the "multiline field" of Airtable row.

this improved editor support multiple kind of blocks such as:
- list
- image
- code block


Completely free, it allows you to transform your Airtable Workspace to a performant Task Manager.                    

Основная информация о расширении

Название Airtable Rich Text Editor Airtable Rich Text Editor
ID pahnaifgodbokcknbjkocpmndfafgkoh
Официальный URL https://chromewebstore.google.com/detail/airtable-rich-text-editor/pahnaifgodbokcknbjkocpmndfafgkoh
Описание This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…
Размер файла 163 KB
Количество установок 75
Текущая Версия 0.0.3
Последнее Обновление 2022-03-09
Дата публикации 2022-03-01
Разработчик savetonotion.so
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://anisg.notion.site/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Airtable Rich Text Editor",
    "version": "0.0.3",
    "manifest_version": 3,
    "description": "",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.airtable.com\/*"
            ],
            "css": [],
            "js": [
                "injectScript.js"
            ]
        }
    ],
    "permissions": [],
    "host_permissions": [
        "https:\/\/*.airtable.com\/app*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [],
            "extension_ids": []
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Airtable Rich Text Editor"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}