You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The History tool displays http requests that have been sent since the target page was was loaded. Often there can be a lot of messages, and you may only want to see certain types of messages. To help this we want to add support to add a search or regex feature that would remove messages that didn't match.
There are a number of different ways we could support this, but I think the most cohesive way is to follow the way dev tools work with a single search bar that supports searching and filtering:
Requirements
This change will likely be limited to tool/history.js, drawer.js, drawer.html, drawer.css.
Need to design the search bar element.
Need to be able to persist the filter between page loads (use localstorage)
Should perform some filtering, searching, or fuzzy matching to give the expected results.
The text was updated successfully, but these errors were encountered:
Description
The History tool displays http requests that have been sent since the target page was was loaded. Often there can be a lot of messages, and you may only want to see certain types of messages. To help this we want to add support to add a search or regex feature that would remove messages that didn't match.
There are a number of different ways we could support this, but I think the most cohesive way is to follow the way dev tools work with a single search bar that supports searching and filtering:
Requirements
The text was updated successfully, but these errors were encountered: