Reputation: 1221
In the background script if I do something like:
localStorage.lastname = "Smith";
Is there any way I can clear "lastname" property like we do using History all clear in any browser? Without doing programatically and also without removing the extension?
Since HTML5 localStorage
access is synchronous operation unlike chrome.storage
. I just want to be sure that even though if ordinary user clears the browser history the localStorage set by the background script remains there
Upvotes: 0
Views: 1180
Reputation: 14657
chrome://extensions/
page, enable developer mode.chrome-extension://...
Upvotes: 1