Sheets To JSON

Download JSON from Google Sheets

Sheets To JSON란 무엇입니까?

Sheets To JSON은(는) ntarasiuk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download JSON from Google Sheets"입니다.

확장 프로그램 스크린샷

screenshot

Sheets To JSON 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
        }
    ]
}