Guest User

Untitled

a guest
Jul 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. chrome.storage.local.remove('tbsettings', function () {
  2. Object.keys(localStorage)
  3. .forEach(function (key) {
  4.  
  5. if (/^(Toolbox.)/.test(key)) {
  6. localStorage.removeItem(key);
  7. }
  8. });
  9.  
  10. });
Add Comment
Please, Sign In to add comment