Airtable Rich Text Editor
This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…
Co to jest Airtable Rich Text Editor?
Airtable Rich Text Editor to rozszerzenie Chrome opracowane przez savetonotion.so, a jego główną funkcją jest „This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Airtable Rich Text Editor
Pobierz pliki rozszerzeń Airtable Rich Text Editor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Airtable Rich Text Editor |
ID | pahnaifgodbokcknbjkocpmndfafgkoh |
Oficjalny URL | https://chromewebstore.google.com/detail/airtable-rich-text-editor/pahnaifgodbokcknbjkocpmndfafgkoh |
Opis | This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list… |
Rozmiar pliku | 163 KB |
Liczba instalacji | 75 |
Aktualna Wersja | 0.0.3 |
Ostatnia Aktualizacja | 2022-03-09 |
Data Publikacji | 2022-03-01 |
Deweloper | savetonotion.so |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://anisg.notion.site/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
Obsługiwane Języki | 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'" } } |