Airtable Schema Extractor

This extension will extract schema from the airtable.com/api page

Cos'è Airtable Schema Extractor?

Airtable Schema Extractor è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension will extract schema from the airtable.com/api page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Airtable Schema Extractor

Scarica i file di estensione Airtable Schema Extractor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Visit airtable.com/api and click on this extension to get the schema for all your tables.                    

Informazioni di Base sull'Estensione

Nome Airtable Schema Extractor Airtable Schema Extractor
ID cgcjgclmbhcibagnfhjlkigjjokeffia
URL Ufficiale https://chromewebstore.google.com/detail/airtable-schema-extractor/cgcjgclmbhcibagnfhjlkigjjokeffia
Descrizione This extension will extract schema from the airtable.com/api page
Dimensione del File 7.13 KB
Conteggio Installazioni 153
Versione Corrente 1.0
Ultimo Aggiornamento 2018-07-28
Data di Pubblicazione 2018-07-28
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Airtable Schema Extractor",
    "description": "This extension will extract schema from the airtable.com\/api page",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/contentscript.js"
            ],
            "matches": [
                "https:\/\/airtable.com\/app*"
            ]
        }
    ],
    "web_accessible_resources": [
        "scripts\/getSchemaScript.js"
    ],
    "permissions": [
        "activeTab"
    ]
}