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 là gì?

Airtable Rich Text Editor là một tiện ích mở rộng Chrome được phát triển bởi savetonotion.so, và tính năng chính của nó là "This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Airtable Rich Text Editor

Tải xuống các tệp mở rộng Airtable Rich Text Editor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Airtable Rich Text Editor Airtable Rich Text Editor
ID pahnaifgodbokcknbjkocpmndfafgkoh
URL Chính Thức https://chromewebstore.google.com/detail/airtable-rich-text-editor/pahnaifgodbokcknbjkocpmndfafgkoh
Mô tả This extension extend the "multiline field" of Airtable row. this improved editor support multiple kind of blocks such as: - list…
Kích Thước Tệp 163 KB
Số Lần Cài Đặt 75
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2022-03-09
Ngày Phát Hành 2022-03-01
Nhà Phát Triển savetonotion.so
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://anisg.notion.site/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec
Ngôn Ngữ Được Hỗ Trợ 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'"
    }
}