Sheets To JSON
Download JSON from Google Sheets
Was ist Sheets To JSON?
Sheets To JSON ist eine Chrome-Erweiterung, die von ntarasiuk entwickelt wurde, und ihr Hauptmerkmal ist "Download JSON from Google Sheets".
Erweiterungsscreenshots
Sheets To JSON-Erweiterungs-CRX-Datei herunterladen
Laden Sie Sheets To JSON-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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! :)
Grundlegende Informationen zur Erweiterung
Name | Sheets To JSON |
ID | enmkalgdnmcaljdfkojckdbhkjmffmoa |
Offizielle URL | https://chromewebstore.google.com/detail/sheets-to-json/enmkalgdnmcaljdfkojckdbhkjmffmoa |
Beschreibung | Download JSON from Google Sheets |
Dateigröße | 4.56 KB |
Installationsanzahl | 4,000 |
Aktuelle Version | 0.3 |
Letztes Update | 2023-11-26 |
Veröffentlichungsdatum | 2023-06-24 |
Bewertung | 3.50/5 Insgesamt 16 Bewertungen |
Entwickler | ntarasiuk |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.linkedin.com/in/ntarasiuk |
Unterstützte Sprachen | 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 } ] } |