Airtable Rich Text Editor
This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…
What is Airtable Rich Text Editor?
Airtable Rich Text Editor is a Chrome extension developed by savetonotion.so, and its main feature is "This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…".
Extension Screenshots
Download Airtable Rich Text Editor Extension CRX File
Download Airtable Rich Text Editor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Airtable Rich Text Editor |
ID | pahnaifgodbokcknbjkocpmndfafgkoh |
Official URL | https://chromewebstore.google.com/detail/airtable-rich-text-editor/pahnaifgodbokcknbjkocpmndfafgkoh |
Description | This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list… |
File Size | 163 KB |
Installation Count | 75 |
Current Version | 0.0.3 |
Last Updated | 2022-03-09 |
Publish Date | 2022-03-01 |
Developer | savetonotion.so |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://anisg.notion.site/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
Supported Languages | 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'" } } |