Getting your Grooveshark playlist from Chrome and Firefox
Grooveshark has been shut down.
If you have opened Grooveshark with chrome and your local cache intact, you can retrieve your playlist from chrome's local storage.
If you have opened Grooveshark with chrome and your local cache intact, you can retrieve your playlist from chrome's local storage.
- Go to grooveshark.com in chrome (haven't tried in other browsers)
- Open "Developer Tools" (CTRL+SHIFT+I)
- Click on "Resources" Tab
- Expand "Local Storage" tree
- Click on "http://grooveshark.com"
- Find the key that looks something like "Library32467954" (some 7+ digit number)
- Look at its "value" (it's a JSON string). You should see something like this "{"lastModified":.....blah blah some artist name...
- Right-Click on that cell, click "Edit Value", then hit CTRL+C (Copy)
- Paste the contents of your clipboard into the window @ https://json-csv.com/
- Download the resulting .CSV file in Open Office or Excel
Firefox users can run the following in the console (Ctrl+shift+k) to try and retrieve the information:
for (var i = 0, k; k = window.localStorage.key(i); i++) {
document.body.innerHTML += '<div>' + k + '<br/>' + window.localStorage.getItem(k) + '</div>';
}
for (var i = 0, k; k = window.localStorage.key(i); i++) {
document.body.innerHTML += '<div>' + k + '<br/>' + window.localStorage.getItem(k) + '</div>';
}
If you cleared the cache or use any other browser try your luck at http://groovebackup.com/
Comments
Post a Comment