Sheets To JSON
Download JSON from Google Sheets
What is Sheets To JSON?
Sheets To JSON is a Chrome extension developed by ntarasiuk, and its main feature is "Download JSON from Google Sheets".
Extension Screenshots
Download Sheets To JSON Extension CRX File
Download Sheets To JSON extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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! :)
Extension Basic Information
Name | Sheets To JSON |
ID | enmkalgdnmcaljdfkojckdbhkjmffmoa |
Official URL | https://chromewebstore.google.com/detail/sheets-to-json/enmkalgdnmcaljdfkojckdbhkjmffmoa |
Description | Download JSON from Google Sheets |
File Size | 4.56 KB |
Installation Count | 4,000 |
Current Version | 0.3 |
Last Updated | 2023-11-26 |
Publish Date | 2023-06-24 |
Rating | 3.50/5 Total 16 Ratings |
Developer | ntarasiuk |
[email protected] | |
Payment Type | free |
Extension Website | https://www.linkedin.com/in/ntarasiuk |
Supported Languages | 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 } ] } |