Airtable Rich Text Editor
This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…
Was ist Airtable Rich Text Editor?
Airtable Rich Text Editor ist eine Chrome-Erweiterung, die von savetonotion.so entwickelt wurde, und ihr Hauptmerkmal ist "This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…".
Erweiterungsscreenshots
Airtable Rich Text Editor-Erweiterungs-CRX-Datei herunterladen
Laden Sie Airtable Rich Text Editor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pahnaifgodbokcknbjkocpmndfafgkoh |
| Offizielle URL | https://chromewebstore.google.com/detail/airtable-rich-text-editor/pahnaifgodbokcknbjkocpmndfafgkoh |
| Beschreibung | This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list… |
| Dateigröße | 163 KB |
| Installationsanzahl | 75 |
| Aktuelle Version | 0.0.3 |
| Letztes Update | 2022-03-09 |
| Veröffentlichungsdatum | 2022-03-01 |
| Entwickler | savetonotion.so |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://anisg.notion.site/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
| Unterstützte Sprachen | 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'"
}
} | |