Airtable Rich Text Editor
This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…
什么是Airtable Rich Text Editor?
Airtable Rich Text Editor是由savetonotion.so开发的Chrome扩展程序,该扩展的主要功能是“This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…”。
扩展截图
下载Airtable Rich Text Editor扩展crx文件
下载Airtable Rich Text Editor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Airtable Rich Text Editor |
ID | pahnaifgodbokcknbjkocpmndfafgkoh |
官方URL | https://chromewebstore.google.com/detail/airtable-rich-text-editor/pahnaifgodbokcknbjkocpmndfafgkoh |
简介 | This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list… |
文件大小 | 163 KB |
安装次数 | 75 |
当前版本 | 0.0.3 |
更新时间 | 2022-03-09 |
上架时间 | 2022-03-01 |
开发者 | savetonotion.so |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://anisg.notion.site/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
支持的语言 | 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'" } } |