Export Sheet Data
Export Sheet Data is an open source add-on for Google Sheets that exports sheet data as JSON or XML.
Convenient
Export Sheet Data is meant to be simple to use but very powerful. No more exporting multiple CSVs then compiling data.
{
"Spies" : {
"Sterling" : {
"Name":"Sterling",
"Age":30,
"Aliases": [
"Duchess",
"Randy"
]
}
}
}
JSON
Customizable
Options and formats can be adjusted to reflect personal taste. Default or stringified values for JSON. Attributes or child elements for XML. Format your data the way you want.
<data>
<Spies>
<Sterling>
<Name>Sterling</Name>
<Age>30</Age>
<Aliases>
Duchess
Randy
</Aliases>
</Sterling>
</Spies>
</data>
XML
Free and open source!
If you’d like help on your sheet, want to request a feature or contribute, or even just review the source code, visit the repo on GitHub!