Airtable Schema Extractor
This extension will extract schema from the airtable.com/api page
Qu'est-ce que Airtable Schema Extractor ?
Airtable Schema Extractor est une extension Chrome développée par Unknown, et sa fonction principale est "This extension will extract schema from the airtable.com/api page".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Airtable Schema Extractor
Téléchargez les fichiers d'extension Airtable Schema 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
Visit airtable.com/api and click on this extension to get the schema for all your tables.
Informations de Base sur l'Extension
Nom | Airtable Schema Extractor |
ID | cgcjgclmbhcibagnfhjlkigjjokeffia |
URL Officiel | https://chromewebstore.google.com/detail/airtable-schema-extractor/cgcjgclmbhcibagnfhjlkigjjokeffia |
Description | This extension will extract schema from the airtable.com/api page |
Taille du Fichier | 7.13 KB |
Nombre d'Installations | 153 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2018-07-28 |
Date de Publication | 2018-07-28 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |