forked from Stigmatoz/web-activity-time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstorage.js
More file actions
31 lines (27 loc) · 763 Bytes
/
storage.js
File metadata and controls
31 lines (27 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
'use strict';
var storageLocal = {
loadTabs(name, callback) {
chrome.storage.sync.get(name, function (item) {
if (item[name] !== undefined) {
var result = item[name];
if (result !== undefined)
callback(result);
}
});
},
saveTabs(value, callback) {
chrome.storage.sync.set({ tabs: value });
if (callback !== undefined)
callback();
},
saveSettings(name, value) {
chrome.storage.sync.set({ [name]: value });
},
getSettings(name, callback) {
chrome.storage.sync.get(name, function (item) {
if (item !== undefined) {
callback(item[name]);
}
});
}
}