Airtable Extractor by Table Capture

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

Airtable Extractor by Table Capture란 무엇입니까?

Airtable Extractor by Table Capture은(는) https://georgemike.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to extract data from an Airtable shared view to Excel (XLSX), CSV or JSON."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Last updated: 1/5/2024

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

How it works:
• Just right-click to download in your desired format
• You get 5 free exports, afterwards you can purchase a 30-pack of exports or a license for unlimited exports.

Special Thanks:
This extension is a fork + update of one made by Gonçalo Cabrita (gmcabrita.com).                    

확장 프로그램 기본 정보

이름 Airtable Extractor by Table Capture Airtable Extractor by Table Capture
ID jdldgiafancpgcleiodepocjobmmfjif
공식 URL https://chromewebstore.google.com/detail/airtable-extractor-by-tab/jdldgiafancpgcleiodepocjobmmfjif
설명 Allows you to extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.
파일 크기 460 KB
설치 횟수 2,856
현재 버전 1.0.54
최근 업데이트 2024-01-06
출시 날짜 2022-03-28
평점 4.71/5 총 24 개의 평점
개발자 https://georgemike.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://georgemike.com/
도움말 페이지 URL https://georgemike.com/
개인정보 보호 정책 페이지 URL https://www.georgemike.com/chrome/privacypolicy
지원되는 언어 en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.54",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extSName__",
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "homepage_url": "https:\/\/georgemike.com",
    "icons": {
        "34": "img\/icon-34.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "contextMenus",
        "downloads",
        "storage",
        "webRequest",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/airtable.com\/*"
            ],
            "js": [
                "js\/AirtableLocalPasswordSaver.js",
                "js\/InPageExporter.js",
                "js\/content.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "account.html"
            ],
            "matches": [
                "https:\/\/airtable.com\/*"
            ]
        }
    ],
    "commands": {
        "export-to-csv": {
            "suggested_key": {
                "default": "Ctrl+Shift+J",
                "windows": "Alt+Shift+J",
                "mac": "Alt+Shift+J"
            },
            "description": "Export to CSV"
        },
        "export-to-excel": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "windows": "Alt+Shift+L",
                "mac": "Alt+Shift+L"
            },
            "description": "Export to Excel"
        }
    },
    "action": [],
    "host_permissions": [
        "*:\/\/airtable.com\/*"
    ]
}