Airtable Extractor
Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.
Airtable Extractor là gì?
Airtable Extractor là một tiện ích mở rộng Chrome được phát triển bởi dylangotosea, và tính năng chính của nó là "Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Airtable Extractor
Tải xuống các tệp mở rộng Airtable Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Allows you to extract data from an Airtable shared view to Excel (XLSX), CSV or JSON. Features: • Export to Microsoft Excel (XLSX), CSV, JSON • Copy to Clipboard • Export embedded Airtables How it works: airtable extractor is work on aritable chrome web, it's a airtable web cliper, which can extract airtable web data and airtable rich text. When accessing the target website, the extract button will be displayed on the page. Click the button to download data in xlsx, csv and other formats.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Airtable Extractor |
ID | ofhgecgfhgmibnfhpffgpkoeiedpeeim |
URL Chính Thức | https://chromewebstore.google.com/detail/airtable-extractor/ofhgecgfhgmibnfhpffgpkoeiedpeeim |
Mô tả | Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON. |
Kích Thước Tệp | 1.29 MB |
Số Lần Cài Đặt | 33 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2023-12-24 |
Ngày Phát Hành | 2023-12-24 |
Nhà Phát Triển | dylangotosea |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.chromeextensionhub.com/ |
URL Trang Chính Sách Bảo Mật | https://www.chromeextensionhub.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | id,ms,de,en,fr,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,hi,bn,ta,th,ar,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Airtable Extractor", "version": "1.0.0", "description": "Extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.", "options_ui": { "page": "src\/pages\/options\/index.html" }, "background": { "service_worker": "src\/pages\/background\/index.js" }, "action": { "default_icon": "icon-128.png" }, "host_permissions": [ "*:\/\/airtable.com\/*" ], "icons": { "128": "icon-128.png" }, "permissions": [ "downloads", "storage", "webRequest", "scripting", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/airtable.com\/*" ], "js": [ "src\/pages\/content\/index.js" ], "css": [ "contentStyle.css" ], "all_frames": true } ], "devtools_page": "src\/pages\/devtools\/index.html", "web_accessible_resources": [ { "resources": [ "contentStyle.css", "icon-128.png", "icon-34.png" ], "matches": [ "https:\/\/airtable.com\/*" ] } ], "default_locale": "en" } |