Open Links in New Tab

Ensures all links open in a new tab.

Cos'è Open Links in New Tab?

Open Links in New Tab è un'estensione di Chrome sviluppata da sassnathan, e la sua funzione principale è "Ensures all links open in a new tab.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Open Links in New Tab

Scarica i file di estensione Open Links in New Tab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Open Links in New Tab Open Links in New Tab
ID facnjbdmmbddmojfmpfknnkihjcikgon
URL Ufficiale https://chromewebstore.google.com/detail/open-links-in-new-tab/facnjbdmmbddmojfmpfknnkihjcikgon
Descrizione Ensures all links open in a new tab.
Dimensione del File 5.34 KB
Conteggio Installazioni 107
Versione Corrente 1.0
Ultimo Aggiornamento 2023-08-29
Data di Pubblicazione 2023-08-28
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore sassnathan
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Nathan-S19/OpenLinksInNewTab-extension
Lingue Supportate 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"
    }
}