Sheets To JSON

Download JSON from Google Sheets

Sheets To JSONคืออะไร?

Sheets To JSON เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ntarasiuk และคุณลักษณะหลักของมันคือ "Download JSON from Google Sheets"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sheets To JSON

ดาวน์โหลดไฟล์ส่วนขยาย Sheets To JSON ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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! :)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Sheets To JSON Sheets To JSON
ID enmkalgdnmcaljdfkojckdbhkjmffmoa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sheets-to-json/enmkalgdnmcaljdfkojckdbhkjmffmoa
คำอธิบาย Download JSON from Google Sheets
ขนาดไฟล์ 4.56 KB
จำนวนการติดตั้ง 4,000
เวอร์ชันปัจจุบัน 0.3
อัปเดตครั้งล่าสุด 2023-11-26
วันที่เผยแพร่ 2023-06-24
คะแนน 3.50/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา ntarasiuk
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.linkedin.com/in/ntarasiuk
ภาษาที่รองรับ 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
        }
    ]
}