Airtable Rich Text Editor

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

O que é Airtable Rich Text Editor?

Airtable Rich Text Editor é uma extensão do Chrome desenvolvida por savetonotion.so, e sua principal característica é "This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Airtable Rich Text Editor

Baixe arquivos de extensão Airtable Rich Text Editor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Airtable Rich Text Editor Airtable Rich Text Editor
ID pahnaifgodbokcknbjkocpmndfafgkoh
URL Oficial https://chromewebstore.google.com/detail/airtable-rich-text-editor/pahnaifgodbokcknbjkocpmndfafgkoh
Descrição This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…
Tamanho do Arquivo 163 KB
Contagem de Instalações 75
Versão Atual 0.0.3
Última Atualização 2022-03-09
Data de Publicação 2022-03-01
Desenvolvedor savetonotion.so
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://anisg.notion.site/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec
Idiomas Suportados 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'"
    }
}