Airtable Extractor

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

Airtable Extractor क्या है?

Airtable Extractor dylangotosea द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Airtable Extractor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
}