This module makes all URLs that link to external websites to open in a new tab.

It automatically adds (on the front end, not in Oxygen editor) target="_blank" and rel="noreferrer noopener" to all anchor elements that link to pages other than those in the current site.

Sample HTML output:

Before:

<a id="span-110-203" class="ct-link-text" href="https://google.com" target="_self">Google</a>

After:

<a id="span-110-203" class="ct-link-text" href="https://google.com" target="_blank" rel="noreferrer noopener">Google</a>
Top