Sheets To JSON
Download JSON from Google Sheets
Sheets To JSON là gì?
Sheets To JSON là một tiện ích mở rộng Chrome được phát triển bởi ntarasiuk, và tính năng chính của nó là "Download JSON from Google Sheets".
Ả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 Sheets To JSON
Tải xuống các tệp mở rộng Sheets To JSON 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
Easily download your Google Sheets data as JSON files. Perfect for integrating with other applications or storing your data in a more portable format. How to use: Just click the "JSON" button in the toolbar in sheet you want to download. The JSON file will be saved to your computer. Troubleshooting: Make sure your first row is a header row with header names or it may not work. * This extension isn't meant to convert a complicated sheet, just a simple sheet with headers and row data. If you like it, please rate it 5 stars! :)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Sheets To JSON |
ID | enmkalgdnmcaljdfkojckdbhkjmffmoa |
URL Chính Thức | https://chromewebstore.google.com/detail/sheets-to-json/enmkalgdnmcaljdfkojckdbhkjmffmoa |
Mô tả | Download JSON from Google Sheets |
Kích Thước Tệp | 4.56 KB |
Số Lần Cài Đặt | 4,000 |
Phiên Bản Hiện Tại | 0.3 |
Cập Nhật Lần Cuối | 2023-11-26 |
Ngày Phát Hành | 2023-06-24 |
Đánh Giá | 3.50/5 Tổng số 16 Đánh Giá |
Nhà Phát Triển | ntarasiuk |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.linkedin.com/in/ntarasiuk |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sheets To JSON", "action": [], "manifest_version": 3, "version": "0.3", "description": "Download JSON from Google Sheets", "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/spreadsheets\/d\/*" ], "js": [ "getJSON.js" ], "run_at": "document_end", "all_frames": true } ] } |