Airtable Schema Extractor
This extension will extract schema from the airtable.com/api page
Airtable Schema Extractorคืออะไร?
Airtable Schema Extractor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension will extract schema from the airtable.com/api page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Airtable Schema Extractor
ดาวน์โหลดไฟล์ส่วนขยาย 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"
]
} | |