Sheets To JSON
Download JSON from Google Sheets
Co to jest Sheets To JSON?
Sheets To JSON to rozszerzenie Chrome opracowane przez ntarasiuk, a jego główną funkcją jest „Download JSON from Google Sheets”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Sheets To JSON
Pobierz pliki rozszerzeń Sheets To JSON w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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! :)
Podstawowe informacje o rozszerzeniu
Nazwa | Sheets To JSON |
ID | enmkalgdnmcaljdfkojckdbhkjmffmoa |
Oficjalny URL | https://chromewebstore.google.com/detail/sheets-to-json/enmkalgdnmcaljdfkojckdbhkjmffmoa |
Opis | Download JSON from Google Sheets |
Rozmiar pliku | 4.56 KB |
Liczba instalacji | 4,000 |
Aktualna Wersja | 0.3 |
Ostatnia Aktualizacja | 2023-11-26 |
Data Publikacji | 2023-06-24 |
Ocena | 3.50/5 Łącznie 16 Oceny |
Deweloper | ntarasiuk |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.linkedin.com/in/ntarasiuk |
Obsługiwane Języki | 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 } ] } |