Sheets To JSON
Download JSON from Google Sheets
Hvad er Sheets To JSON?
Sheets To JSON er en Chrome-udvidelse udviklet af ntarasiuk, og dens hovedfunktion er "Download JSON from Google Sheets".
Udvidelsesskærmbilleder
Download Sheets To JSON-udvidelses-CRX-fil
Download Sheets To JSON-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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! :)
Grundlæggende oplysninger om udvidelsen
Navn | Sheets To JSON |
ID | enmkalgdnmcaljdfkojckdbhkjmffmoa |
Officiel URL | https://chromewebstore.google.com/detail/sheets-to-json/enmkalgdnmcaljdfkojckdbhkjmffmoa |
Beskrivelse | Download JSON from Google Sheets |
Filstørrelse | 4.56 KB |
Antal Installationer | 4,000 |
Nuværende Version | 0.3 |
Senest Opdateret | 2023-11-26 |
Udgivelsesdato | 2023-06-24 |
Bedømmelse | 3.50/5 Samlet 16 Bedømmelser |
Udvikler | ntarasiuk |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.linkedin.com/in/ntarasiuk |
Understøttede Sprog | 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 } ] } |