blob: 513d12e7a591dc6588830fad32ba15f48ae0a7f5 [file] [log] [blame]
avm99963cbea3142019-03-28 00:48:15 +01001function isEmpty(obj) {
2 return Object.keys(obj).length === 0;
3}
4
5chrome.runtime.onInstalled.addListener(function(details) {
6 chrome.storage.sync.get(null, function(items) {
7 if (details.reason == "install") {
8 if (isEmpty(items)) {
9 chrome.storage.sync.set({"list": true, "thread": true});
10 }
11 }
12 });
13});