Open Links in New Tab

Ensures all links open in a new tab.

Wat is Open Links in New Tab?

Open Links in New Tab is een Chrome-extensie ontwikkeld door sassnathan, en de belangrijkste functie is "Ensures all links open in a new tab.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Open Links in New Tab

Download Open Links in New Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Open Links in New Tab Open Links in New Tab
ID facnjbdmmbddmojfmpfknnkihjcikgon
Officiële URL https://chromewebstore.google.com/detail/open-links-in-new-tab/facnjbdmmbddmojfmpfknnkihjcikgon
Beschrijving Ensures all links open in a new tab.
Bestandsgrootte 5.34 KB
Aantal Installaties 107
Huidige Versie 1.0
Laatst Bijgewerkt 2023-08-29
Publicatiedatum 2023-08-28
Beoordeling 2.33/5 Totaal 3 Beoordelingen
Ontwikkelaar sassnathan
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Nathan-S19/OpenLinksInNewTab-extension
Ondersteunde Talen 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"
    }
}