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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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'"
    }
}