Open Links in New Tab

Ensures all links open in a new tab.

Qu'est-ce que Open Links in New Tab ?

Open Links in New Tab est une extension Chrome développée par sassnathan, et sa fonction principale est "Ensures all links open in a new tab.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Open Links in New Tab

Téléchargez les fichiers d'extension Open Links in New Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Open Links in New Tab Open Links in New Tab
ID facnjbdmmbddmojfmpfknnkihjcikgon
URL Officiel https://chromewebstore.google.com/detail/open-links-in-new-tab/facnjbdmmbddmojfmpfknnkihjcikgon
Description Ensures all links open in a new tab.
Taille du Fichier 5.34 KB
Nombre d'Installations 107
Version Actuelle 1.0
Dernière Mise à Jour 2023-08-29
Date de Publication 2023-08-28
Évaluation 2.33/5 Total 3 Évaluations
Développeur sassnathan
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Nathan-S19/OpenLinksInNewTab-extension
Langues Prises en Charge 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"
    }
}