Open Links in New Tab

Ensures all links open in a new tab.

Was ist Open Links in New Tab?

Open Links in New Tab ist eine Chrome-Erweiterung, die von sassnathan entwickelt wurde, und ihr Hauptmerkmal ist "Ensures all links open in a new tab.".

Erweiterungsscreenshots

screenshot

Open Links in New Tab-Erweiterungs-CRX-Datei herunterladen

Laden Sie Open Links in New Tab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Open Links in New Tab Open Links in New Tab
ID facnjbdmmbddmojfmpfknnkihjcikgon
Offizielle URL https://chromewebstore.google.com/detail/open-links-in-new-tab/facnjbdmmbddmojfmpfknnkihjcikgon
Beschreibung Ensures all links open in a new tab.
Dateigröße 5.34 KB
Installationsanzahl 107
Aktuelle Version 1.0
Letztes Update 2023-08-29
Veröffentlichungsdatum 2023-08-28
Bewertung 2.33/5 Insgesamt 3 Bewertungen
Entwickler sassnathan
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Nathan-S19/OpenLinksInNewTab-extension
Unterstützte Sprachen 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"
    }
}