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ファイルをダウンロード

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
Eメール [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
        }
    ]
}