Airtable Rich Text Editor
This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…
Wat is Airtable Rich Text Editor?
Airtable Rich Text Editor is een Chrome-extensie ontwikkeld door savetonotion.so, en de belangrijkste functie is "This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…".
Extensie Screenshots
Download het CRX-bestand van de extensie Airtable Rich Text Editor
Download Airtable Rich Text Editor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Airtable Rich Text Editor |
ID | pahnaifgodbokcknbjkocpmndfafgkoh |
Officiële URL | https://chromewebstore.google.com/detail/airtable-rich-text-editor/pahnaifgodbokcknbjkocpmndfafgkoh |
Beschrijving | This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list… |
Bestandsgrootte | 163 KB |
Aantal Installaties | 75 |
Huidige Versie | 0.0.3 |
Laatst Bijgewerkt | 2022-03-09 |
Publicatiedatum | 2022-03-01 |
Ontwikkelaar | savetonotion.so |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://anisg.notion.site/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
Ondersteunde Talen | 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'" } } |