Airtable Schema Extractor
This extension will extract schema from the airtable.com/api page
Airtable Schema Extractorとは何ですか?
Airtable Schema ExtractorはUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension will extract schema from the airtable.com/api page」です。
拡張機能のスクリーンショット
Airtable Schema Extractor拡張機能のCRXファイルをダウンロード
Airtable Schema Extractor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Visit airtable.com/api and click on this extension to get the schema for all your tables. 拡張機能の基本情報
| 名前 | |
| ID | cgcjgclmbhcibagnfhjlkigjjokeffia |
| 公式URL | https://chromewebstore.google.com/detail/airtable-schema-extractor/cgcjgclmbhcibagnfhjlkigjjokeffia |
| 説明 | This extension will extract schema from the airtable.com/api page |
| ファイルサイズ | 7.13 KB |
| インストール数 | 153 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2018-07-28 |
| 公開日 | 2018-07-28 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | Unknown |
| 支払い方法 | free |
| 対応言語 | 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"
]
} | |