129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
/*
Context Menu
*/
browser.contextMenus.create({
id: "grammar_checking",
title: "Correction grammaticale",
contexts: ["selection", "editable", "page"]
});
browser.contextMenus.create({
id: "lexicographer",
title: "Lexicographe",
contexts: ["selection", "editable", "page"]
});
browser.contextMenus.create({
id: "conjugueur_panel",
title: "Conjugueur [fenêtre]",
contexts: ["all"]
});
|
|
|
|
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
/*
Context Menu
*/
browser.contextMenus.create({
id: "grammar_checking",
title: "Correction grammaticale",
contexts: ["selection", "editable"]
});
browser.contextMenus.create({
id: "lexicographer",
title: "Lexicographe",
contexts: ["selection", "editable"]
});
browser.contextMenus.create({
id: "conjugueur_panel",
title: "Conjugueur [fenêtre]",
contexts: ["all"]
});
|