here is a way to block multiple websites
function OnBeforeNavigate(NewURL, TargetFrame: String): Boolean;
begin
// Convert NewURL to lowercase for case-insensitive comparison
NewURL := AnsiLowerCase(NewURL);
// Block Dropbox, Google, and other specific sites
if (Pos("dropbox", NewURL)...