Airtable Rich Text Editor
This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…
Vad är Airtable Rich Text Editor?
Airtable Rich Text Editor är en Chrome-tillägg utvecklad av savetonotion.so, och dess huvudfunktion är "This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…".
Tilläggsskärmbilder
Ladda ner Airtable Rich Text Editor-förlängningens CRX-fil
Ladda ner Airtable Rich Text Editor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Airtable Rich Text Editor |
ID | pahnaifgodbokcknbjkocpmndfafgkoh |
Officiell webbadress | https://chromewebstore.google.com/detail/airtable-rich-text-editor/pahnaifgodbokcknbjkocpmndfafgkoh |
Beskrivning | This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list… |
Filstorlek | 163 KB |
Antal Installationer | 75 |
Aktuell Version | 0.0.3 |
Senast Uppdaterad | 2022-03-09 |
Publiceringsdatum | 2022-03-01 |
Utvecklare | savetonotion.so |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://anisg.notion.site/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
Stödda Språk | 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'" } } |