Sheets To JSON
Download JSON from Google Sheets
Vad är Sheets To JSON?
Sheets To JSON är en Chrome-tillägg utvecklad av ntarasiuk, och dess huvudfunktion är "Download JSON from Google Sheets".
Tilläggsskärmbilder
Ladda ner Sheets To JSON-förlängningens CRX-fil
Ladda ner Sheets To JSON-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Sheets To JSON |
ID | enmkalgdnmcaljdfkojckdbhkjmffmoa |
Officiell webbadress | https://chromewebstore.google.com/detail/sheets-to-json/enmkalgdnmcaljdfkojckdbhkjmffmoa |
Beskrivning | Download JSON from Google Sheets |
Filstorlek | 4.56 KB |
Antal Installationer | 4,000 |
Aktuell Version | 0.3 |
Senast Uppdaterad | 2023-11-26 |
Publiceringsdatum | 2023-06-24 |
Betyg | 3.50/5 Totalt 16 Betyg |
Utvecklare | ntarasiuk |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.linkedin.com/in/ntarasiuk |
Stödda Språk | 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 } ] } |