213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
| id: "separator_page",
type: "separator",
contexts: ["all"]
});
// Selected text
browser.contextMenus.create({
id: "getListOfTokensFromSelectedText",
title: "Lexicographe (sélection)",
contexts: ["selection"]
});
browser.contextMenus.create({
id: "parseAndSpellcheckSelectedText",
title: "Correction grammaticale (sélection)",
contexts: ["selection"]
});
browser.contextMenus.create({
id: "separator_selection",
type: "separator",
|
|
|
| 213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
| id: "separator_page",
type: "separator",
contexts: ["all"]
});
// Selected text
browser.contextMenus.create({
id: "rightClickLxgSelectedText",
title: "Lexicographe (sélection)",
contexts: ["selection"]
});
browser.contextMenus.create({
id: "rightClickGCSelectedText",
title: "Correction grammaticale (sélection)",
contexts: ["selection"]
});
browser.contextMenus.create({
id: "separator_selection",
type: "separator",
|