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