-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdevtools.js
30 lines (24 loc) · 979 Bytes
/
devtools.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
chrome.devtools.panels.create('Protractor', 'icon48.png', 'panel.html', function (panel) {
var xhr = new XMLHttpRequest();
xhr.open('GET', chrome.runtime.getURL('/inject.js'), false);
xhr.send();
var script = xhr.responseText;
if (script) {
chrome.devtools.inspectedWindow.eval(script.toString());
var interval;
panel.onShown.addListener(function (o) {
interval = window.setInterval(function () {
chrome.devtools.inspectedWindow.eval('(function () { return window.protractor.logs; })()', function () {
if (!arguments[1])
o.update(arguments[0]);
else
chrome.devtools.inspectedWindow.eval(script.toString());
});
}, 300);
});
panel.onHidden.addListener(function () {
if (interval)
window.clearInterval(interval);
});
}
});