-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontentScript.js
executable file
·411 lines (333 loc) · 11.9 KB
/
contentScript.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
// *************************************************************************************************
var isActive = false;
var isOpen = false;
var extensionURL = null;
var isCSPerror = false;
var contextMenuElementXPath = null;
var isListeningKeyboardActivation = false;
// *************************************************************************************************
// restore Firebug Lite state
var loadStateData = function()
{
var FirebugData = localStorage.getItem("Firebug");
isActive = false;
isOpen = false;
extensionURL = chrome.extension.getURL("");
if (FirebugData)
{
FirebugData = FirebugData.split(",");
isActive = FirebugData[0] == "1";
isOpen = FirebugData[1] == "1";
}
if(isCSPerror) {
isActive = false;
}
};
// *************************************************************************************************
// load Firebug Lite application
var loadFirebug = function()
{
document.documentElement.setAttribute("debug", isOpen);
injectScriptText("("+listenConsoleCalls+")()");
// TODO: xxxpedro - change to XHR when Issue 41024 is solved
// Issue 41024: XHR using file: and chrome-extension: protocols not working.
// http://code.google.com/p/chromium/issues/detail?id=41024
injectFirebugScript();
};
// TODO: think a better solution than using the stateData parameter, required
// by the keyboard activation.
var loadFirebugAndWait = function(callback, stateData)
{
stateData = stateData || ('1,1,'+extensionURL);
localStorage.setItem('Firebug', stateData);
loadStateData();
chrome.extension.sendRequest({name: isActive ? "FB_enableIcon" : "FB_disableIcon"});
document.documentElement.setAttribute("debug", isOpen);
injectFirebugScript();
setTimeout(function(){
waitFirebug(callback);
},0);
};
var waitFirebug = function(callback)
{
if (document && document.getElementById("FirebugChannel"))
{
stopListeningKeyboardActivation();
callback();
}
else
setTimeout(function(){ waitFirebug(callback); }, 100);
};
// *************************************************************************************************
// inject Firebug Lite script into the page
var injectFirebugScript = function(url)
{
var scriptElement = document.getElementById("FirebugLite");
var cspScriptElement = document.getElementById("FirebugLiteCSPTest");
if (scriptElement)
{
firebugDispatch("FB_toggle");
}
else if(cspScriptElement) {
alert("The security rules of this website prevent the loading of Firebug Lite.");
}else{
var cspScript = document.createElement("script");
cspScript.src = extensionURL + "csp-test.js";
cspScript.setAttribute("id", "FirebugLiteCSPTest");
cspScript.setAttribute("firebugIgnore", "true");
cspScript.setAttribute("extension", "Chrome");
cspScript.setAttribute("extension-id", chrome.runtime.id);
cspScript.onload = function() {
var cspMode = cspScript.getAttribute("csp-mode");
if(cspMode === 'false') {
isActive = false;
isCSPerror = true;
var message = isActive ? "FB_enableIcon" : "FB_disableIcon";
chrome.extension.sendRequest({name: message});
return;
}
var script = document.createElement("script");
script.src = extensionURL + "firebug-lite.js";
script.setAttribute("id", "FirebugLite");
script.setAttribute("firebugIgnore", "true");
script.setAttribute("extension", "Chrome");
script.setAttribute("extension-id", chrome.runtime.id);
script.onload = function() {
// TODO: xxxpedro remove this files when deploy the new structure
script = document.createElement("script");
script.src = extensionURL + "googleChrome.js";
document.documentElement.appendChild(script);
};
document.documentElement.appendChild(script);
};
document.documentElement.appendChild(cspScript);
}
};
// inject a script into the page
var injectScriptText = function(text)
{
var script = document.createElement("script");
var parent = document.documentElement;
script.text = text;
script.setAttribute("id", "FirebugLite");
script.setAttribute("firebugIgnore", "true");
script.setAttribute("extension", "Chrome");
script.setAttribute("extension-id", chrome.runtime.id);
parent.appendChild(script);
parent.removeChild(script);
};
// *************************************************************************************************
// communication with the background page
chrome.runtime.onMessage.addListener
(
function(request, sender, sendResponse)
{
// check if Firebug Lite is active
if (request.name == "FB_isActive")
{
loadStateData();
if(isCSPerror) {
sendResponse({value: "csp"});
}else{
sendResponse({value: ""+isActive});
}
}
// load Firebug Lite application
else if (request.name == "FB_loadFirebug")
{
setTimeout(function(){
loadStateData();
//loadFirebug();
loadFirebugAndWait(function(){
isActive = true;
if(isCSPerror) {
isActive = false;
}
var message = isActive ? "FB_enableIcon" : "FB_disableIcon";
chrome.extension.sendRequest({name: message});
loadChannel();
});
},0);
sendResponse({});
}
// handle context menu click by sending "FB_contextMenuClick" message
// to Firebug Lite application
else if (request.name == "FB_contextMenuClick")
{
// TODO: if not active, activate first, wait the activation to complete
// and only then dispatch the event to Firebug Lite application
if (isActive)
firebugDispatch("FB_contextMenuClick,"+contextMenuElementXPath);
else
loadFirebugAndWait(function(){
firebugDispatch("FB_contextMenuClick,"+contextMenuElementXPath);
});
}
else if (request.name == "FB_deactivate")
{
listenKeyboardActivation();
}
else
sendResponse({}); // snub them.
}
);
// *************************************************************************************************
// communication with the page
var channel = null;
var channelEvent;
var onFirebugChannelEvent = function()
{
channel = document.getElementById("FirebugChannel");
if (channel)
{
chrome.extension.sendRequest({name: channel.innerText});
}
};
var loadChannel = function()
{
channel = document.getElementById("FirebugChannel");
if (channel)
{
channel.addEventListener("FirebugChannelEvent", onFirebugChannelEvent);
channelEvent = new Event("FirebugChannelEvent"); //replaced old fashioned way of creating events
}
};
var firebugDispatch = function(data)
{
if (!channel)
loadChannel();
channel.innerText = data;
channel.dispatchEvent(channelEvent);
};
// *************************************************************************************************
var onContextMenu = function(event)
{
contextMenuElementXPath = getElementXPath(event.target);
};
var loadListeners = function()
{
window.addEventListener("contextmenu", onContextMenu);
window.addEventListener("unload", unloadListeners);
};
var unloadListeners = function()
{
if (channel)
{
channel.removeEventListener("FirebugChannelEvent", onFirebugChannelEvent);
}
window.removeEventListener("contextmenu", onContextMenu);
window.removeEventListener("unload", unloadListeners);
};
// *************************************************************************************************
// listen to console calls before Firebug Lite finishes to load
var listenConsoleCalls = function()
{
// TODO: xxxpedro add all console functions
var fns = ["log", "info", "warn", "error"];
var listener = {consoleQueue: ["chromeConsoleQueueHack"]};
var queue = listener.consoleQueue;
for (var i=0, l=fns.length; i<l; i++)
{
var fn = fns[i];
(function(fn){
listener[fn] = function()
{
queue.push([fn, arguments]);
};
})(fn);
}
window.console = listener;
};
// *************************************************************************************************
var onGlobalKeyDown = function onGlobalKeyDown(event)
{
var keyCode = event.keyCode;
var shiftKey = event.shiftKey;
var ctrlKey = event.ctrlKey;
if (keyCode == 123 /* F12 */ && !shiftKey)
{
loadFirebugAndWait(function(){
if (ctrlKey)
{
firebugDispatch("FB_openInNewWindow");
}
else
{
firebugDispatch("FB_toggle");
}
},"1,0,"); // TODO: think a better solution than using the stateData parameter
}
else if (keyCode == 67 /* C */ && ctrlKey && shiftKey)
{
Firebug.Inspector.toggleInspect();
//cancelEvent(event, true);
}
else if (keyCode == 76 /* L */ && ctrlKey && shiftKey)
{
Firebug.chrome.focusCommandLine();
//cancelEvent(event, true);
}
};
var listenKeyboardActivation = function()
{
// TODO: listen to F12 key. if pressed activate Firebug Lite, and open
// TODO: this function could also listen to CTRL+SHIFT+C, triggering
// Firebug Lite activation, opening it, and starting the inspection,
// like in Firebug for Firefox
// TODO: this function should be called also when Firebug Lite is deactivated
window.addEventListener("keydown", onGlobalKeyDown);
isListeningKeyboardActivation = true;
};
var stopListeningKeyboardActivation = function()
{
// TODO: remove listener when Firebug Lite application is activated/loaded
// TODO: remove listener on window onunload (if not removed already)
if (isListeningKeyboardActivation)
{
window.removeEventListener("keydown", onGlobalKeyDown);
}
};
// *************************************************************************************************
var getElementXPath = function(element)
{
if (element && element.id)
return '//*[@id="' + element.id + '"]';
else
return this.getElementTreeXPath(element);
};
var getElementTreeXPath = function(element)
{
var paths = [];
for (; element && element.nodeType == 1; element = element.parentNode)
{
var index = 0;
var nodeName = element.nodeName;
for (var sibling = element.previousSibling; sibling; sibling = sibling.previousSibling)
{
if (sibling.nodeType != 1) continue;
if (sibling.nodeName == nodeName)
++index;
}
var tagName = element.nodeName.toLowerCase();
var pathIndex = (index ? "[" + (index+1) + "]" : "");
paths.splice(0, 0, tagName + pathIndex);
}
return paths.length ? "/" + paths.join("/") : null;
};
// *************************************************************************************************
// startup Firebug Lite if it is active for the current page
loadStateData();
if (isActive)
{
loadFirebugAndWait(function(){
loadChannel();
});
}
else
{
listenKeyboardActivation();
}
loadListeners();
// *************************************************************************************************
// adjust the browser icon according Firebug Lite's current state
chrome.extension.sendRequest({name: isActive ? "FB_enableIcon" : "FB_disableIcon"});