generated from hchiam/learning-firefox-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbrain.js
375 lines (340 loc) · 13.1 KB
/
brain.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
createConsoleLog();
browser.runtime.onMessage.addListener((results) => {
const showConsoleLogElement = results.showConsoleLogElement;
if (showConsoleLogElement) {
showConsoleLog();
}
});
function showConsoleLog() {
(function () {
// use an IIFE to isolate variables
var widgetDefaultStyle =
"all: initial; z-index: 99999 !important; padding: 0 !important; position: fixed !important; bottom: 0 !important; left: 0 !important; visibility: visible; font-family: avenir, arial, tahoma, monospace !important; font-size: 16px !important; margin-left: 5px !important; transition: 0.25s !important;";
var theWholeThingDiv = document.getElementById(
"firefox-extension-console-log-element"
);
theWholeThingDiv.hidden = false;
theWholeThingDiv.style = widgetDefaultStyle;
theWholeThingDiv.scrollIntoView();
var inputBox = document.getElementById(
"inputBox_firefox-extension-console-log-element"
);
inputBox.value = "";
inputBox.setAttribute("rows", 1);
setTimeout(() => {
inputBox.focus();
}, 100);
})();
}
function createConsoleLog() {
var scriptAlreadyExists = document.getElementById(
"script_firefox-extension-console-log-element"
);
if (scriptAlreadyExists) return;
var script = document.createElement("script");
script.id = "script_firefox-extension-console-log-element";
script.innerHTML = `
/* This creates an interactive console log that you can view without opening the actual web dev tools console log. */
(function () {
// use an IIFE to isolate variables
var elementAlreadyExists = document.getElementById(
"firefox-extension-console-log-element"
);
var widgetDefaultStyle =
"all: initial; z-index: 99999 !important; padding: 0 !important; position: fixed !important; bottom: 0 !important; visibility: visible; font-family: avenir, arial, tahoma, monospace !important; font-size: 1.5rem !important; margin-left: 5px !important; transition: 0.25s !important;";
if (elementAlreadyExists) {
elementAlreadyExists.hidden = false;
elementAlreadyExists.style = widgetDefaultStyle;
elementAlreadyExists.scrollIntoView();
document
.getElementById("inputBox_firefox-extension-console-log-element")
.focus();
return;
}
var lastInput = "";
var darkMode = "background: #333; color: lime;";
var defaultStyle =
darkMode + "padding: 0.3rem !important; border: none !important;";
var inputBoxDefaultStyle =
defaultStyle +
"margin-right: 0 !important; border-radius: 0.2rem 0 0 0.2rem !important; background: black;";
var inputButtonDefaultStyle =
defaultStyle +
"margin-left: 0 !important; border-radius: 0 0.2rem 0.2rem 0 !important;";
var inputHoverStyle = "background: lime; color: black !important;";
var inputGroupDiv = document.createElement("div");
inputGroupDiv.id = "inputGroup_firefox-extension-console-log-element";
inputGroupDiv.style =
"border-radius: 0.3rem !important; display: grid !important; grid-template: auto / auto 15ch; border: 2px solid lightgrey !important; padding: 0 !important;";
// create elements:
var inputBox = createInputBox();
var inputButton = createInputButton();
var consoleOutput = createConsoleOutput();
var theWholeThingDiv = createConsoleLogWidget();
inputBox.focus();
var isFromInterface = false;
redefineConsoleActions();
function redefineConsoleActions() {
var oldConsoleLog = console.log;
var oldConsoleInfo = console.info;
var oldConsoleWarn = console.warn;
var oldConsoleError = console.error;
var oldConsoleDebug = console.debug;
console.log = function () {
oldConsoleLog.call(console, ...arguments);
if (isFromInterface) outputToWidget(arguments[0]);
isFromInterface = false;
};
console.info = function () {
oldConsoleInfo.call(console, ...arguments);
if (isFromInterface) outputToWidget(arguments[0]);
isFromInterface = false;
};
console.warn = function () {
oldConsoleWarn.call(console, ...arguments);
if (isFromInterface) outputToWidget(arguments[0]);
isFromInterface = false;
};
console.error = function () {
oldConsoleError.call(console, ...arguments);
if (isFromInterface) outputToWidget(arguments[0]);
isFromInterface = false;
};
console.debug = function () {
oldConsoleDebug.call(console, ...arguments);
if (isFromInterface) outputToWidget(arguments[0]);
isFromInterface = false;
};
}
function outputToWidget(input) {
// to avoid recursive selection on body, temporarily take the widget itself out
var temp = document.getElementById("firefox-extension-console-log-element");
document.getElementById("firefox-extension-console-log-element").remove();
// (only one input from input box)
var output = "";
try {
output = eval(input);
if (isElement(output)) {
output = output.outerHTML.replace(/</g, "<").replace(/\\\//g, "/");
} else if (typeof output === "object") {
output = JSON.stringify(output, null, 4);
} else if (typeof output === "string") {
output = output.replace(/</g, "<").replace(/\\\//g, "/");
}
input = String(input).replace(/</g, "<").replace(/\\\//g, "/");
consoleOutput.innerHTML +=
'<button style="background: black; color: lime; text-align: left;" onclick="document.getElementById(\\'inputBox_firefox-extension-console-log-element\\').value=this.innerText;">' +
input +
"</button><br/>" +
'<span style="background: black; color: white;">' +
output +
"</span><br/><br/>";
// only clear input if parsing worked:
clearInput();
} catch(e) {
inputBox.value = input;
updateInputRows();
consoleOutput.innerHTML +=
'<span style="background: black; color: lime;">' +
input +
"</span><br/>" +
'<span style="background: black; color: white;">' +
"<small><em>" + e + "</em></small>" +
"</span><br/><br/>";
makeInputGroupWobble();
}
// put the widget back
document.body.appendChild(temp);
inputBox.focus();
}
function createInputBox() {
var inputBox = document.createElement("textarea");
inputBox.id = "inputBox_firefox-extension-console-log-element";
inputBox.placeholder = "console log input here";
inputBox.title = "enter x to hide this widget";
inputBox.style = inputBoxDefaultStyle;
inputBox.setAttribute("autocapitalize", "none");
inputBox.setAttribute("rows", 1);
inputBox.onkeyup = function (event) {
var holdingShiftOrCtrl = event.shiftKey === true || event.ctrlKey === true;
var hitEnter = event.key === "Enter" || event.keyCode === 13;
var hitDelete = event.key === "Delete" || event.keyCode === 8 || event.keyCode === 46;
var hitArrowUp = event.key === "ArrowUp" || event.keyCode === 38;
if (holdingShiftOrCtrl && hitEnter) {
triggerInputToConsole();
} else if (hitEnter || hitDelete) {
updateInputRows();
} else if (inputBox.value === "" && hitArrowUp) {
enterLastInput();
}
};
inputBox.onmouseenter = function () {
inputBox.style = inputBoxDefaultStyle + inputHoverStyle;
inputBox.focus();
};
inputBox.onmouseleave = function () {
inputBox.style = inputBoxDefaultStyle;
};
return inputBox;
}
function createInputButton() {
var inputButton = document.createElement("button");
inputButton.id = "inputButton_firefox-extension-console-log-element";
inputButton.innerText = "Send command";
inputButton.title = "enter x to hide this widget";
inputButton.style = inputButtonDefaultStyle;
inputButton.onclick = function () {
triggerInputToConsole();
updateInputRows();
inputBox.focus();
};
inputButton.onmouseenter = function () {
inputButton.style = inputButtonDefaultStyle + inputHoverStyle;
if (inputBox.value === "") {
inputBox.focus();
}
};
inputButton.onmouseleave = function () {
inputButton.style = inputButtonDefaultStyle;
};
inputButton.onfocus = function () {
inputButton.style = inputButtonDefaultStyle + inputHoverStyle;
};
inputButton.onblur = function () {
inputButton.style = inputButtonDefaultStyle;
};
return inputButton;
}
function createConsoleOutput() {
var defaultOutputStyle =
"margin-top: 1px !important; max-height: 100px !important; overflow: scroll !important; width: 90vw !important; background: black !important; color: white !important; border: none !important; border-radius: 0.3rem !important; padding: 5px !important;";
var consoleOutput = document.createElement("pre");
consoleOutput.id = "output_firefox-extension-console-log-element";
consoleOutput.style = defaultOutputStyle;
consoleOutput.onclick = function (e) {
if (e.target !== consoleOutput) return;
var expandedHeight = "90vh";
var shouldCollapse = (consoleOutput.style.height === expandedHeight || consoleOutput.innerText === "");
if (shouldCollapse) {
consoleOutput.style = defaultOutputStyle;
} else {
consoleOutput.style.height = "90vh";
consoleOutput.style.maxHeight = "90vh";
consoleOutput.style.opacity = 0.9;
}
};
return consoleOutput;
}
function createConsoleLogWidget() {
// put the elements together:
var theWholeThingDiv = document.createElement("div");
theWholeThingDiv.id = "firefox-extension-console-log-element";
theWholeThingDiv.style = widgetDefaultStyle + "visibility: hidden;";
inputGroupDiv.appendChild(inputBox);
inputGroupDiv.appendChild(inputButton);
theWholeThingDiv.appendChild(inputGroupDiv);
theWholeThingDiv.appendChild(consoleOutput);
document.body.appendChild(theWholeThingDiv);
return theWholeThingDiv;
}
function isElement(element) {
return (
element &&
(element instanceof Element || element instanceof HTMLDocument)
);
}
function updateInputRows() {
var newLineCharCount = (inputBox.value.match(/\\n/g) || []).length;
inputBox.setAttribute("rows", 1 + newLineCharCount);
}
function triggerInputToConsole() {
var consoleInput = inputBox.value;
if (consoleInput === "") makeInputGroupWobble();
try {
inputToConsole(consoleInput);
} catch (e) {
makeInputGroupWobble();
}
}
function inputToConsole(stringInput) {
stringInput = stringInput.trim();
lastInput = stringInput;
if (stringInput === "") return; // ignore empty input
if (handledClear(stringInput) || handledCustomCommandX(stringInput)) {
return;
}
isFromInterface = true;
console.log(stringInput);
// auto-scroll to last output:
consoleOutput.scrollTop = consoleOutput.scrollHeight;
consoleOutput.scrollIntoView();
}
function handledClear(stringInput) {
if (stringInput === "clear()") {
consoleOutput.innerHTML = "";
clearInput();
return true;
}
return false;
}
function handledCustomCommandX(stringInput) {
stringInput = stringInput.toLowerCase();
if (
stringInput === "x" ||
stringInput === '"x"' ||
stringInput === "'x'"
) {
var confirmed = confirm("Do you want to hide this console log widget?");
if (!confirmed) return false; // (cancelled)
theWholeThingDiv.hidden = true;
theWholeThingDiv.style = widgetDefaultStyle + "visibility: hidden;";
return true;
}
return false;
}
function clearInput() {
inputBox.value = "";
}
function makeInputGroupWobble() {
var wobbleCss = document.createTextNode(\`.wobble {
animation: wobble 0.5s;
}
@keyframes wobble {
0% { transform: rotate(-3deg); }
50% {transform: rotate(3deg); }
100% { transform: rotate(0deg); }
}\`);
var styleAlreadyExists = document.getElementById("wobble-css");
if (!styleAlreadyExists) {
var style = document.createElement("style");
style.id = "wobble-css";
style.type = "text/css";
style.appendChild(wobbleCss);
document.body.appendChild(style);
}
inputGroupDiv.classList.add("wobble");
setTimeout(() => {
inputGroupDiv.classList.remove("wobble");
}, 500);
}
function enterLastInput() {
inputBox.value = lastInput;
}
function $(selector, el) {
// $(...) is a web console helper
if (!el) {
el = document;
}
return el.querySelector(selector);
}
function $$(selector, el) {
// $$(...) is a web console helper
if (!el) {
el = document;
}
return el.querySelectorAll(selector);
}
})();
`;
document.body.appendChild(script);
}