jeffsikes / pandora_liked_songs_export

Export a file of the thumbs up selection metadata from your Pandora Music collection.
MIT License
4 stars 0 forks source link

Firefox console export #1

Closed TomTheGeek closed 3 months ago

TomTheGeek commented 3 months ago

The console on Firefox breaks up the output into individual objects so it's impossible to "copy object" on all of them at once. To get an export right click on the output array and selected "Store as Global Variable". That creates a var called 'temp0'. Then in the console run the following code to output the entire object as a string. This creates a new output that "copy object" can get all the data at once.

console.log(JSON.stringify(temp0, null, 2))

jeffsikes commented 3 months ago

Thanks! Great idea. I've incorporated that into the script, and tested in Edge, Chrome and Firefox.