This repository was archived by the owner on Jul 21, 2024. It is now read-only.
File tree 1 file changed +12
-1
lines changed 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,12 @@ declare namespace contextMenu {
24
24
@default 'Search with Google'
25
25
*/
26
26
readonly searchWithGoogle ?: string ;
27
-
27
+
28
+ /**
29
+ @default 'Search with DuckDuckGo'
30
+ */
31
+ readonly searchWithDuckDuckGo ?: string ;
32
+
28
33
/**
29
34
@default 'Cut'
30
35
*/
@@ -115,6 +120,7 @@ declare namespace contextMenu {
115
120
readonly learnSpelling : ( options : ActionOptions ) => MenuItemConstructorOptions ;
116
121
readonly lookUpSelection : ( options : ActionOptions ) => MenuItemConstructorOptions ;
117
122
readonly searchWithGoogle : ( options : ActionOptions ) => MenuItemConstructorOptions ;
123
+ readonly searchWithDuckDuckGo : ( options : ActionOptions ) => MenuItemConstructorOptions ;
118
124
readonly cut : ( options : ActionOptions ) => MenuItemConstructorOptions ;
119
125
readonly copy : ( options : ActionOptions ) => MenuItemConstructorOptions ;
120
126
readonly paste : ( options : ActionOptions ) => MenuItemConstructorOptions ;
@@ -184,7 +190,12 @@ declare namespace contextMenu {
184
190
@default true
185
191
*/
186
192
readonly showSearchWithGoogle ?: boolean ;
193
+ /**
194
+ Show the `Search with DuckDuckGo` menu item when right-clicking text.
187
195
196
+ @default false
197
+ */
198
+ readonly showSearchWithDuckDuckGo ?: boolean ;
188
199
/**
189
200
Show the `Select All` menu item when right-clicking in a window.
190
201
You can’t perform that action at this time.
0 commit comments