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
|
// Background
"use strict";
/*
Worker (separate thread to avoid freezing Firefox)
*/
let xGCEWorker = new Worker("gce_worker.js");
xGCEWorker.onmessage = function (e) {
// https://developer.mozilla.org/en-US/docs/Web/API/MessageEvent
switch (e.data[0]) {
case "grammar_errors":
console.log("GRAMMAR ERRORS");
console.log(e.data[1].aGrammErr);
browser.runtime.sendMessage({sCommand: "grammar_errors", aGrammErr: e.data[1].aGrammErr});
break;
case "spelling_and_grammar_errors":
console.log("SPELLING AND GRAMMAR ERRORS");
console.log(e.data[1].aSpellErr);
console.log(e.data[1].aGrammErr);
break;
case "text_to_test_result":
browser.runtime.sendMessage({sCommand: "text_to_test_result", sResult: e.data[1]});
break;
case "fulltests_result":
console.log("TESTS RESULTS");
browser.runtime.sendMessage({sCommand: "fulltests_result", sResult: e.data[1]});
break;
case "options":
console.log("OPTIONS");
console.log(e.data[1]);
break;
case "tokens":
console.log("TOKENS");
console.log(e.data[1]);
break;
case "error":
console.log("ERROR");
console.log(e.data[1]);
break;
default:
console.log("Unknown command: " + e.data[0]);
}
};
xGCEWorker.postMessage(["init", {sExtensionPath: browser.extension.getURL("."), sOptions: "", sContext: "Firefox"}]);
/*
|
>
>
>
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
>
|
|
|
|
|
|
|
>
>
>
>
|
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
|
// Background
"use strict";
function showError (e) {
console.error(e.fileName + "\n" + e.name + "\nline: " + e.lineNumber + "\n" + e.message);
}
/*
Worker (separate thread to avoid freezing Firefox)
*/
let xGCEWorker = new Worker("gce_worker.js");
xGCEWorker.onmessage = function (e) {
// https://developer.mozilla.org/en-US/docs/Web/API/MessageEvent
try {
switch (e.data[0]) {
case "grammar_errors":
console.log("GRAMMAR ERRORS");
console.log(e.data[1].aGrammErr);
browser.runtime.sendMessage({sCommand: "grammar_errors", aGrammErr: e.data[1].aGrammErr});
break;
case "spelling_and_grammar_errors":
console.log("SPELLING AND GRAMMAR ERRORS");
console.log(e.data[1].aSpellErr);
console.log(e.data[1].aGrammErr);
break;
case "text_to_test_result":
browser.runtime.sendMessage({sCommand: "text_to_test_result", sResult: e.data[1]});
break;
case "fulltests_result":
console.log("TESTS RESULTS");
browser.runtime.sendMessage({sCommand: "fulltests_result", sResult: e.data[1]});
break;
case "options":
console.log("OPTIONS");
console.log(e.data[1]);
break;
case "tokens":
console.log("TOKENS");
console.log(e.data[1]);
browser.browserAction.setPopup({popup: "panel/main.html"});
browser.runtime.sendMessage({sCommand: "show_tokens", oResult: e.data[1]});
break;
case "error":
console.log("ERROR");
console.log(e.data[1]);
break;
default:
console.log("Unknown command: " + e.data[0]);
}
}
catch (e) {
showError(e);
}
};
xGCEWorker.postMessage(["init", {sExtensionPath: browser.extension.getURL("."), sOptions: "", sContext: "Firefox"}]);
/*
|
99
100
101
102
103
104
105
106
107
108
|
console.log("Item " + xInfo.menuItemId + " clicked in tab " + xTab.id);
console.log("editable: " + xInfo.editable + " · selected: " + xInfo.selectionText);
// confusing: no way to get the node where we click?!
switch (xInfo.menuItemId) {
case "grammar_checking":
break;
case "lexicographer":
break;
}
});
|
>
>
>
|
109
110
111
112
113
114
115
116
117
118
119
120
121
|
console.log("Item " + xInfo.menuItemId + " clicked in tab " + xTab.id);
console.log("editable: " + xInfo.editable + " · selected: " + xInfo.selectionText);
// confusing: no way to get the node where we click?!
switch (xInfo.menuItemId) {
case "grammar_checking":
break;
case "lexicographer":
if (xInfo.selectionText) {
xGCEWorker.postMessage(["getListOfTokens", {sText: xInfo.selectionText}]);
}
break;
}
});
|