-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathinject.js
50 lines (40 loc) · 887 Bytes
/
inject.js
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
40
41
42
43
44
45
46
47
48
49
50
function getStorage() {
var obj = {};
if (storage === undefined) {
return;
}
var specialKeys = [
'length', 'key', 'getItem'
];
for (var i in storage) {
if (storage.hasOwnProperty(i)) {
if (i == "drm_keys"){
var x = storage.getItem(i);
x = JSON.parse(x);
//obj[0] = x;
for (var y in x) {
var myindex = [y];
var myvalue = x[y];
obj[myindex] = myvalue;
}
}
}
}
return obj;
}
var storage = msg.type === 'L' ? localStorage : sessionStorage;
var result;
switch (msg.what) {
case 'get':
result = getStorage();
console.table(result);
break;
case 'clear':
storage.removeItem('drm_keys');
//localStorage.removeItem('drm_keys');
break;
case 'export':
result = JSON.stringify(getStorage(), null, 4);
break;
}
result;