Open Links in New Tab

Ensures all links open in a new tab.

Hvad er Open Links in New Tab?

Open Links in New Tab er en Chrome-udvidelse udviklet af sassnathan, og dens hovedfunktion er "Ensures all links open in a new tab.".

Udvidelsesskærmbilleder

screenshot

Download Open Links in New Tab-udvidelses-CRX-fil

Download Open Links in New Tab-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Why Use Open Links in New Tab?

Navigating the web can involve clicking through a myriad of links. Open Links in New Tab simplifies your browsing experience by automatically opening all links in new tabs. No more right-clicking or using keyboard shortcuts; let this extension do the work for you!

Features:

🌐 Universal Compatibility: Works on all websites.
🛠️ Simple Interface: Just one checkbox to enable or disable the feature.
🟢 Status Indicator: A badge on the extension icon shows whether the feature is currently ON or OFF.
How to Use:

Install the Extension: Add it to Chrome from the Chrome Web Store.
Click the Icon: Find the extension icon in your toolbar and click it.
Enable or Disable: Use the popup checkbox to turn the feature ON or OFF.                    

Grundlæggende oplysninger om udvidelsen

Navn Open Links in New Tab Open Links in New Tab
ID facnjbdmmbddmojfmpfknnkihjcikgon
Officiel URL https://chromewebstore.google.com/detail/open-links-in-new-tab/facnjbdmmbddmojfmpfknnkihjcikgon
Beskrivelse Ensures all links open in a new tab.
Filstørrelse 5.34 KB
Antal Installationer 107
Nuværende Version 1.0
Senest Opdateret 2023-08-29
Udgivelsesdato 2023-08-28
Bedømmelse 2.33/5 Samlet 3 Bedømmelser
Udvikler sassnathan
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/Nathan-S19/OpenLinksInNewTab-extension
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open Links in New Tab",
    "version": "1.0",
    "description": "Ensures all links open in a new tab.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}