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
39 lines (34 loc) · 1019 Bytes
/
storage.js
File metadata and controls
39 lines (34 loc) · 1019 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
32
33
34
35
36
37
38
39
'use strict';
class LocalStorage {
loadTabs(name, callback, callbackIsUndefined) {
chrome.storage.local.get(name, function (item) {
if (item[name] !== undefined) {
var result = item[name];
if (result !== undefined)
callback(result);
}
else {
if (callbackIsUndefined !== undefined)
callbackIsUndefined();
}
});
}
saveTabs(value, callback) {
chrome.storage.local.set({ tabs: value });
if (callback !== undefined)
callback();
}
saveSettings(name, value) {
chrome.storage.local.set({ [name]: value });
}
getSettings(name, callback) {
chrome.storage.local.get(name, function (item) {
if (item !== undefined) {
callback(item[name]);
}
});
}
getMemoryUse(name, callback) {
chrome.storage.local.getBytesInUse(name, callback);
}
};