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…”。

擴展截圖

screenshot
screenshot

下載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 Airtable Rich Text Editor
ID pahnaifgodbokcknbjkocpmndfafgkoh
官方網址 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'"
    }
}