Sheets To JSON
Download JSON from Google Sheets
什麼是Sheets To JSON?
Sheets To JSON是由ntarasiuk開發的Chrome擴展程式,該擴展的主要功能是“Download JSON from Google Sheets”。
擴展截圖
下載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! :) 擴展基本資訊
| 名稱 | |
| ID | enmkalgdnmcaljdfkojckdbhkjmffmoa |
| 官方網址 | 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
}
]
} | |