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文件

下載Airtable Extractor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
}