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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย savetonotion.so และคุณลักษณะหลักของมันคือ "This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Airtable Rich Text Editor
ดาวน์โหลดไฟล์ส่วนขยาย 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'" } } |