Airtable Extractor

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

Was ist Airtable Extractor?

Airtable Extractor ist eine Chrome-Erweiterung, die von dylangotosea entwickelt wurde, und ihr Hauptmerkmal ist "Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.".

Erweiterungsscreenshots

screenshot

Airtable Extractor-Erweiterungs-CRX-Datei herunterladen

Laden Sie Airtable Extractor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Airtable Extractor Airtable Extractor
ID ofhgecgfhgmibnfhpffgpkoeiedpeeim
Offizielle URL https://chromewebstore.google.com/detail/airtable-extractor/ofhgecgfhgmibnfhpffgpkoeiedpeeim
Beschreibung Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.
Dateigröße 1.29 MB
Installationsanzahl 33
Aktuelle Version 1.0.0
Letztes Update 2023-12-24
Veröffentlichungsdatum 2023-12-24
Entwickler dylangotosea
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.chromeextensionhub.com/
URL der Datenschutzrichtlinien-Seite https://www.chromeextensionhub.com/privacy
Unterstützte Sprachen 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"
}