Airtable Extractor

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

Qu'est-ce que Airtable Extractor ?

Airtable Extractor est une extension Chrome développée par dylangotosea, et sa fonction principale est "Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Airtable Extractor

Téléchargez les fichiers d'extension Airtable Extractor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Airtable Extractor Airtable Extractor
ID ofhgecgfhgmibnfhpffgpkoeiedpeeim
URL Officiel https://chromewebstore.google.com/detail/airtable-extractor/ofhgecgfhgmibnfhpffgpkoeiedpeeim
Description Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.
Taille du Fichier 1.29 MB
Nombre d'Installations 33
Version Actuelle 1.0.0
Dernière Mise à Jour 2023-12-24
Date de Publication 2023-12-24
Développeur dylangotosea
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.chromeextensionhub.com/
URL de la Page de Politique de Confidentialité https://www.chromeextensionhub.com/privacy
Langues Prises en Charge 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"
}