All links should open automatically in new separate tabs

I can help you with that. To make all links open automatically in new separate tabs, you can add the following code to your browser's settings or use an extension that allows you to do so.

Method 1: Browser Settings

  1. Open your browser's settings or preferences.
  2. Look for the "Tabs" or "Links" section.
  3. Check the box that says "Open links in new tab" or "Always open links in new tab".
  4. Save your changes.

Method 2: Browser Extension

  1. Search for a browser extension that allows you to open links in new tabs automatically.
  2. Install the extension.
  3. Enable the extension.
  4. Configure the extension to open links in new tabs.

Some popular browser extensions that allow you to open links in new tabs automatically include:

Method 3: User Script

  1. Install a user script manager like Tampermonkey (Chrome) or Greasemonkey (Firefox).
  2. Create a new script and add the following code:
    
    function openLinkInNewTab(link) {
    window.open(link, '_blank');
    }

document.addEventListener('click', function(event) { if (event.target.tagName === 'A') { openLinkInNewTab(event.target.href); } });


3. Save the script and reload the page.

This script will open all links in new tabs automatically when you click on them.

Note: The above code is for demonstration purposes only and may not work as-is in your browser. You may need to modify the code to suit your specific browser and requirements.