Sheets To JSON

Download JSON from Google Sheets

¿Qué es Sheets To JSON?

Sheets To JSON es una extensión de Chrome desarrollada por ntarasiuk, y su función principal es "Download JSON from Google Sheets".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Sheets To JSON

Descarga archivos de extensión Sheets To JSON en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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! :)                    

Información Básica de la Extensión

Nombre Sheets To JSON Sheets To JSON
ID enmkalgdnmcaljdfkojckdbhkjmffmoa
URL Oficial https://chromewebstore.google.com/detail/sheets-to-json/enmkalgdnmcaljdfkojckdbhkjmffmoa
Descripción Download JSON from Google Sheets
Tamaño del Archivo 4.56 KB
Cantidad de Instalaciones 4,000
Versión Actual 0.3
Última Actualización 2023-11-26
Fecha de Publicación 2023-06-24
Calificación 3.50/5 Total de 16 Calificaciones
Desarrollador ntarasiuk
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.linkedin.com/in/ntarasiuk
Idiomas Soportados 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
        }
    ]
}