File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed
special-pages/pages/history/app Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,11 @@ Response, note: always return the same query I sent:
91
91
"domain" : " example.com" ,
92
92
"etldPlusOne" : " example.com" ,
93
93
"title" : " Example Website" ,
94
- "url" : " https://example.com/page"
94
+ "url" : " https://example.com/page" ,
95
+ "favicon" : {
96
+ "src" : " ..." ,
97
+ "maxAvailableSize" : 64
98
+ }
95
99
}
96
100
]
97
101
}
@@ -171,13 +175,35 @@ Sent when a right-click is issued on a section title (or when the three-dots but
171
175
}
172
176
```
173
177
178
+ ** response, to trigger a domain search**
179
+ ``` json
180
+ {
181
+ "action" : " domain-search"
182
+ }
183
+ ```
184
+
174
185
** response, otherwise**
175
186
``` json
176
187
{
177
188
"action" : " none"
178
189
}
179
190
```
180
191
192
+ ### ` entries_delete `
193
+ {@link "History Messages".EntriesDeleteRequest}
194
+
195
+ Sent when the delete key is pressed on an item, or a group of items
196
+
197
+ ** Types:**
198
+ - Parameters: {@link "History Messages".EntriesDeleteParams}
199
+ - Response: {@link "History Messages".EntriesDeleteResponse}
200
+
201
+ Note: if a single ` id ` is sent, ** no modal/confirmation should be shown** - but you must
202
+ still reply with an {@link "History Messages".ActionResponse} when the action was completed.
203
+
204
+ If multiple ` id ` s are sent, then present a modal window for confirmation, eventually
205
+ responding to the message with {@link "History Messages".ActionResponse}
206
+
181
207
## Notifications
182
208
183
209
### ` open `
You can’t perform that action at this time.
0 commit comments