Как просматривать хранение синхронизации в Chrome

run this in console of your browser

// for sync storage
chrome.storage.sync.get(console.log)

// for local storage
chrome.storage.local.get(console.log)
Run time Terror