Sheets To JSON
Download JSON from Google Sheets
Qu'est-ce que Sheets To JSON ?
Sheets To JSON est une extension Chrome développée par ntarasiuk, et sa fonction principale est "Download JSON from Google Sheets".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Sheets To JSON
Téléchargez les fichiers d'extension Sheets To JSON au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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! :)
Informations de Base sur l'Extension
Nom | Sheets To JSON |
ID | enmkalgdnmcaljdfkojckdbhkjmffmoa |
URL Officiel | https://chromewebstore.google.com/detail/sheets-to-json/enmkalgdnmcaljdfkojckdbhkjmffmoa |
Description | Download JSON from Google Sheets |
Taille du Fichier | 4.56 KB |
Nombre d'Installations | 4,000 |
Version Actuelle | 0.3 |
Dernière Mise à Jour | 2023-11-26 |
Date de Publication | 2023-06-24 |
Évaluation | 3.50/5 Total 16 Évaluations |
Développeur | ntarasiuk |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.linkedin.com/in/ntarasiuk |
Langues Prises en Charge | 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 } ] } |