Airtable Extractor

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

O que é Airtable Extractor?

Airtable Extractor é uma extensão do Chrome desenvolvida por dylangotosea, e sua principal característica é "Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Airtable Extractor

Baixe arquivos de extensão Airtable Extractor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Airtable Extractor Airtable Extractor
ID ofhgecgfhgmibnfhpffgpkoeiedpeeim
URL Oficial https://chromewebstore.google.com/detail/airtable-extractor/ofhgecgfhgmibnfhpffgpkoeiedpeeim
Descrição Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.
Tamanho do Arquivo 1.29 MB
Contagem de Instalações 33
Versão Atual 1.0.0
Última Atualização 2023-12-24
Data de Publicação 2023-12-24
Desenvolvedor dylangotosea
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.chromeextensionhub.com/
URL da Página de Política de Privacidade https://www.chromeextensionhub.com/privacy
Idiomas Suportados 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"
}