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.
拡張機能の基本情報
名前 | |
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 |
Eメール | [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'" } } |