Airtable Schema Extractor
This extension will extract schema from the airtable.com/api page
Wat is Airtable Schema Extractor?
Airtable Schema Extractor is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension will extract schema from the airtable.com/api page".
Extensie Screenshots
Download het CRX-bestand van de extensie Airtable Schema Extractor
Download Airtable Schema Extractor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Visit airtable.com/api and click on this extension to get the schema for all your tables.
Basisinformatie over de Extensie
Naam | Airtable Schema Extractor |
ID | cgcjgclmbhcibagnfhjlkigjjokeffia |
Officiële URL | https://chromewebstore.google.com/detail/airtable-schema-extractor/cgcjgclmbhcibagnfhjlkigjjokeffia |
Beschrijving | This extension will extract schema from the airtable.com/api page |
Bestandsgrootte | 7.13 KB |
Aantal Installaties | 153 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2018-07-28 |
Publicatiedatum | 2018-07-28 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |