Sheets To JSON

Download JSON from Google Sheets

O que é Sheets To JSON?

Sheets To JSON é uma extensão do Chrome desenvolvida por ntarasiuk, e sua principal característica é "Download JSON from Google Sheets".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Sheets To JSON

Baixe arquivos de extensão Sheets To JSON no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Sheets To JSON Sheets To JSON
ID enmkalgdnmcaljdfkojckdbhkjmffmoa
URL Oficial https://chromewebstore.google.com/detail/sheets-to-json/enmkalgdnmcaljdfkojckdbhkjmffmoa
Descrição Download JSON from Google Sheets
Tamanho do Arquivo 4.56 KB
Contagem de Instalações 4,000
Versão Atual 0.3
Última Atualização 2023-11-26
Data de Publicação 2023-06-24
Classificação 3.50/5 Total de 16 Avaliações
Desenvolvedor ntarasiuk
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.linkedin.com/in/ntarasiuk
Idiomas Suportados 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
        }
    ]
}