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
|
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
|
-
+
-
+
-
+
|
contexts: ["editable"]
});
// Page
browser.contextMenus.create({
id: "rightClickLxgPage",
title: "Lexicographe (page)",
contexts: ["all"]
contexts: ["page"]
});
browser.contextMenus.create({
id: "rightClickGCPage",
title: "Correction grammaticale (page)",
contexts: ["all"]
contexts: ["page"]
});
browser.contextMenus.create({
id: "separator_page",
type: "separator",
contexts: ["all"]
contexts: ["page"]
});
// Selected text
browser.contextMenus.create({
id: "rightClickLxgSelectedText",
title: "Lexicographe (sélection)",
contexts: ["selection"]
|