Do away with the domain: prefix in search

This commit is contained in:
Kuba Orlik 2022-07-07 22:35:51 +02:00
parent baec58fd42
commit 9ac5579ebc
2 changed files with 4 additions and 1 deletions

View File

@ -44,7 +44,9 @@ while IFS= read -r DOMAIN; do
continue continue
fi fi
echo "{\"current_action\": \"scanning for requests from $DOMAIN...\"}" echo "{\"current_action\": \"scanning for requests from $DOMAIN...\"}"
network_inspector_search "domain:$DOMAIN" # can filter with more granularity: https://developer.mozilla.org/en-US/docs/Tools/Network_Monitor/request_list#filtering_by_properties # network_inspector_search "domain:$DOMAIN" # can filter with more granularity: https://developer.mozilla.org/en-US/docs/Tools/Network_Monitor/request_list#filtering_by_properties
network_inspector_search "$DOMAIN" # the "domain:" prefix caused problems, as the GUI forces an autocomplete action. This can be worked around by pressing `ESC`, but if you press ESC when there are NO requests, then the console appears and messes up the layout.
# grab ni_search # grab ni_search
count=0 count=0

View File

@ -158,6 +158,7 @@ load_website(){
break; break;
fi fi
done done
sleep 3 # sometimes the consent modal needs a little time to show up
echo "{\"current_action\": \"website loaded\"}" echo "{\"current_action\": \"website loaded\"}"
} }