This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Go to https://airtable.com/api and select a base. | |
// Then open your browsers console (Ctrl+Alt+I) and run the following code. | |
var myapp = { | |
id:window.application.id, | |
name:window.application.name, | |
tables:[] | |
}; | |
for (let table of window.application.tables){ | |
var mytable = { |
NewerOlder