localStorage Export
See: https://stackoverflow.com/questions/13335967/export-data-in-localstorage-for-later-re-import
copy('var data = '+JSON.stringify(localStorage)+';Object.keys(data).forEach(function (k){localStorage.setItem(k, data[k]);});');
Paste the above into browser console, this will set your clipboard to the value needed to reimport localStorage to another browser.