//In Chrome DevTools on the background page of the Postman extension...
//A handy helper method that lets you save data from the console to a file
(function(console){
console.save = function(data, filename){
if(!data) {
console.error('Console.save: No data')
return;
}
if(!filename) filename = 'console.json'
if(typeof data === "object"){
data = JSON.stringify(data, undefined, 4)
}
var blob = new Blob([data], {type: 'text/json'}),
e = document.createEvent('MouseEvents'),
a = document.createElement('a')
a.download = filename
a.href = window.URL.createObjectURL(blob)
a.dataset.downloadurl = ['text/json', a.download, a.href].join(':')
e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null)
a.dispatchEvent(e)
}
})(console)
var req = indexedDB.open('postman')
//Wait for that to finish
var db = req.result
var r = db.transaction(["requests"],"readwrite").objectStore('requests').getAll()
//Wait for that to finish
//This will download a text file with your history
console.save(JSON.stringify(r.result), 'postman-requests-export.json')
//Switch to standalone app and open the dev console
var req = indexedDB.open('postman')
//Wait for that to finish
var db = req.result
var data = //Paste the text from the file exported above
data.forEach(function(a){db.transaction(["requests"],"readwrite").objectStore('requests').add(a)})
//Restart Postman