151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
-
+
|
browser.storage.local.get("oPersonalDictionary").then(this._setSpellingDictionaries, showError); // deprecated
browser.storage.local.get("sc_options").then(this._initSCOptions, showError);
},
registerComposeScripts: async function () {
// For Thunderbird only
if (bThunderbird) {
let xRegisteredScripts = await browser.composeScripts.register({
let xRegisteredScripts = await messenger.composeScripts.register({
/*css: [
// Any number of code or file objects could be listed here.
{ code: "body { background-color: red; }" },
{ file: "compose.css" },
],*/
js: [
// Any number of code or file objects could be listed here.
|
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
|
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
|
-
+
|
/*
ComposeAction
(Thunderbird only)
*/
if (bThunderbird) {
browser.composeAction.onClicked.addListener(function (xTab, xData) {
messenger.composeAction.onClicked.addListener(function (xTab, xData) {
sendCommandToTab(xTab.id, "grammar_checker_compose_window");
});
}
/*
Context Menu
|