Yes, it is possible to have menu items in your Shopify store open in a new tab. Currently, there is no option to select the target to blank when creating menu items in the Shopify admin panel, but you can use a workaround by adding some custom code to your theme.
Find the section of code that defines your menu, which will likely look something like this:
{% for link in linklists.main-menu.links %} {{ link.title }} {% endfor %}
Modify the code to include the “target=_blank” attribute, like this:
{% for link in linklists.main-menu.links %} {{ link.title }} {% endfor %}