Airtable Extractor

Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.

Airtable Extractor란 무엇입니까?

Airtable Extractor은(는) dylangotosea에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON."입니다.

확장 프로그램 스크린샷

screenshot

Airtable Extractor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Allows you to extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.

Features:
• Export to Microsoft Excel (XLSX), CSV, JSON
• Copy to Clipboard
• Export embedded Airtables
 

How it works:

airtable extractor is work on aritable chrome web, it's a airtable web cliper, which can extract airtable web data and airtable rich text.

When accessing the target website, the extract button will be displayed on the page. Click the button to download data in xlsx, csv and other formats.                    

확장 프로그램 기본 정보

이름 Airtable Extractor Airtable Extractor
ID ofhgecgfhgmibnfhpffgpkoeiedpeeim
공식 URL https://chromewebstore.google.com/detail/airtable-extractor/ofhgecgfhgmibnfhpffgpkoeiedpeeim
설명 Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.
파일 크기 1.29 MB
설치 횟수 33
현재 버전 1.0.0
최근 업데이트 2023-12-24
출시 날짜 2023-12-24
개발자 dylangotosea
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.chromeextensionhub.com/
개인정보 보호 정책 페이지 URL https://www.chromeextensionhub.com/privacy
지원되는 언어 id,ms,de,en,fr,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,hi,bn,ta,th,ar,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Airtable Extractor",
    "version": "1.0.0",
    "description": "Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.",
    "options_ui": {
        "page": "src\/pages\/options\/index.html"
    },
    "background": {
        "service_worker": "src\/pages\/background\/index.js"
    },
    "action": {
        "default_icon": "icon-128.png"
    },
    "host_permissions": [
        "*:\/\/airtable.com\/*"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "downloads",
        "storage",
        "webRequest",
        "scripting",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/airtable.com\/*"
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "contentStyle.css"
            ],
            "all_frames": true
        }
    ],
    "devtools_page": "src\/pages\/devtools\/index.html",
    "web_accessible_resources": [
        {
            "resources": [
                "contentStyle.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "https:\/\/airtable.com\/*"
            ]
        }
    ],
    "default_locale": "en"
}