-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtagweight.js
83 lines (66 loc) · 2.15 KB
/
tagweight.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
'use strict';
console.log('tagweight.js loaded');
window.addEventListener('load', () => {
const extension = chrome.runtime.connect({name: "tagweight-client"});
var topFrameId = 0;
window.tagframes = {};
function handlePageEvent(method, params) {
if (method === 'Page.frameAttached') {
console.log('[tagweight] onMessage ' + method + ' = ' + JSON.stringify(params));
window.tagframes[params.frameId] = params.parentFrameId;
params.parentFrameId = window.tagframes[params.frameId];
GRAPHING.addFrame(params);
}
}
function handleNetworkEvent(method, params) {
console.log('[tagweight] onMessage ' + method + ' = ' + JSON.stringify(params));
switch (method) {
case 'Network.requestWillBeSent':
if (params.type === 'Document') {
if (params.frameId === topFrameId) {
window.tagframes = {};
GRAPHING.setRoot(params);
} else {
params.parentFrameId = window.tagframes[params.frameId];
GRAPHING.updateFrame(params);
}
} else {
GRAPHING.requestWillBeSent(params);
}
break;
case 'Network.responseReceived':
GRAPHING.responseReceived(params);
break;
case 'Network.dataReceived':
GRAPHING.dataReceived(params);
break;
case 'Network.requestServedFromCache':
break;
case 'Network.loadingFinished':
GRAPHING.loadingFinished(params);
break;
case 'Network.loadingFailed':
GRAPHING.loadingFailed(params);
break;
default:
break;
}
}
extension.onMessage.addListener(function onMessage(msg) {
switch (msg.event) {
case 'network':
handleNetworkEvent(msg.method, msg.params);
break;
case 'page':
handlePageEvent(msg.method, msg.params);
break;
case 'frame-id':
topFrameId = msg.frameId;
break;
default:
console.log('[tagweight] onMessage : ' + JSON.stringify(msg));
break;
}
});
extension.postMessage({event: 'hello' });
}, false);