Airtable Schema Extractor
This extension will extract schema from the airtable.com/api page
What is Airtable Schema Extractor?
Airtable Schema Extractor is a Chrome extension developed by Unknown, and its main feature is "This extension will extract schema from the airtable.com/api page".
Extension Screenshots
Download Airtable Schema Extractor Extension CRX File
Download Airtable Schema Extractor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Visit airtable.com/api and click on this extension to get the schema for all your tables.
Extension Basic Information
Name | Airtable Schema Extractor |
ID | cgcjgclmbhcibagnfhjlkigjjokeffia |
Official URL | https://chromewebstore.google.com/detail/airtable-schema-extractor/cgcjgclmbhcibagnfhjlkigjjokeffia |
Description | This extension will extract schema from the airtable.com/api page |
File Size | 7.13 KB |
Installation Count | 153 |
Current Version | 1.0 |
Last Updated | 2018-07-28 |
Publish Date | 2018-07-28 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | 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" ] } |