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
29 lines (25 loc) · 714 Bytes
/
storage.js
File metadata and controls
29 lines (25 loc) · 714 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
'use strict';
class LocalStorage {
loadTabs(name, callback) {
chrome.storage.local.get(name, function (item) {
if (item[name] !== undefined) {
var result = JSON.parse(item[name]);
if (result !== undefined)
callback(result);
}
});
}
saveTabs(value) {
chrome.storage.local.set({ tabs: JSON.stringify(value) });
}
saveSettings(name, value) {
chrome.storage.local.set({ [name]: value });
}
getSettings(name, callback) {
chrome.storage.local.get(name, function(item){
if (item !== undefined){
callback(item);
}
});
}
};