Airtable Schema Extractor
This extension will extract schema from the airtable.com/api page
O que é Airtable Schema Extractor?
Airtable Schema Extractor é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension will extract schema from the airtable.com/api page".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Airtable Schema Extractor
Baixe arquivos de extensão Airtable Schema Extractor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Visit airtable.com/api and click on this extension to get the schema for all your tables.
Informações Básicas da Extensão
Nome | Airtable Schema Extractor |
ID | cgcjgclmbhcibagnfhjlkigjjokeffia |
URL Oficial | https://chromewebstore.google.com/detail/airtable-schema-extractor/cgcjgclmbhcibagnfhjlkigjjokeffia |
Descrição | This extension will extract schema from the airtable.com/api page |
Tamanho do Arquivo | 7.13 KB |
Contagem de Instalações | 153 |
Versão Atual | 1.0 |
Última Atualização | 2018-07-28 |
Data de Publicação | 2018-07-28 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |