@Srini Babu Maroju Welcome to Microsoft Q&A, Thank you for posting your query here!
Thanks for raising this question! Firstly, apologies for the delay in responding here and any inconvenience this issue may have caused.
Azure Blob Storage has AAD authentication feature is available : This article explain how to Authorize access to blobs and queues using Azure Active Directory
The feature what you are looking on browser, that option isn't available. Azure Storage accepts OAuth 2.0 access tokens from the Azure AD tenant associated with the subscription that contains the storage account.
Also, refer to this article which explain different types of authorize request to azure storage
You can set different security option like, SAS(A user delegation SAS is secured with Azure Active Directory (Azure AD) credentials and also by the permissions specified for the SAS. A user delegation SAS is analogous to a service SAS in terms of its scope and function, but offers security benefits over the service SAS.) , Static website or RBAC( For read access and more)
A key advantage of using Azure Active Directory (Azure AD) with Azure Blob storage or Queue storage is that your credentials no longer need to be stored in your code. Instead, you can request an OAuth 2.0 access token from the Microsoft identity platform. Azure AD authenticates the security principal (a user, group, or service principal) running the application. If authentication succeeds, Azure AD returns the access token to the application, and the application can then use the access token to authorize requests to Azure Blob storage or Queue storage.
To authenticate a security principal from your Azure Storage application, first configure Azure role-based access control (Azure RBAC) settings for that security principal. Azure Storage defines built-in roles that encompass permissions for containers and queues. When the Azure role is assigned to a security principal, that security principal is granted access to that resource.
Refer here for different Security recommendations for Blob storage
If you wish you may leave your feedback here All the feedback you share in these forums will be monitored and reviewed by the Microsoft engineering teams responsible for building Azure.
Additional information: There is ar thread discussion in SO forum which provides some idea on your scenario:
Hope this helps!
Kindly let us know if the above helps or you need further assistance on this issue.
----------------------------------------------------------------------------------------------------------------------
Please don’t forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.