Search code examples
javascripthtmlreactjsgoogle-chrome-extensionhyperlink

Links on Chrome extensions


I am using react to create a chrome extension but link functionality doesn't seems to be working on the extension popup

<a
          href={`https://google.com`}
        >
          <Button>Click here</Button>
 </a>

Solution

  • Simply adding target="_blank" on the link tag would resolve this issue