chrome.browsingData.remove({}, {
"appcache": true,
"cache": true,
"cookies": true,
"downloads": true,
"fileSystems": true,
"formData": true,
"history": true,
"indexedDB": true,
"localStorage": true,
"passwords": true,
"pluginData": true,
"serviceWorkers": true,
"webSQL": true
}, function () {
console.log('All local data has been cleared');
});