Sheets To JSON
Download JSON from Google Sheets
Wat is Sheets To JSON?
Sheets To JSON is een Chrome-extensie ontwikkeld door ntarasiuk, en de belangrijkste functie is "Download JSON from Google Sheets".
Extensie Screenshots
Download het CRX-bestand van de extensie Sheets To JSON
Download Sheets To JSON-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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! :)
Basisinformatie over de Extensie
Naam | Sheets To JSON |
ID | enmkalgdnmcaljdfkojckdbhkjmffmoa |
Officiële URL | https://chromewebstore.google.com/detail/sheets-to-json/enmkalgdnmcaljdfkojckdbhkjmffmoa |
Beschrijving | Download JSON from Google Sheets |
Bestandsgrootte | 4.56 KB |
Aantal Installaties | 4,000 |
Huidige Versie | 0.3 |
Laatst Bijgewerkt | 2023-11-26 |
Publicatiedatum | 2023-06-24 |
Beoordeling | 3.50/5 Totaal 16 Beoordelingen |
Ontwikkelaar | ntarasiuk |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.linkedin.com/in/ntarasiuk |
Ondersteunde Talen | 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 } ] } |