Open Links in New Tab

Ensures all links open in a new tab.

¿Qué es Open Links in New Tab?

Open Links in New Tab es una extensión de Chrome desarrollada por sassnathan, y su función principal es "Ensures all links open in a new tab.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Open Links in New Tab

Descarga archivos de extensión Open Links in New Tab en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Open Links in New Tab Open Links in New Tab
ID facnjbdmmbddmojfmpfknnkihjcikgon
URL Oficial https://chromewebstore.google.com/detail/open-links-in-new-tab/facnjbdmmbddmojfmpfknnkihjcikgon
Descripción Ensures all links open in a new tab.
Tamaño del Archivo 5.34 KB
Cantidad de Instalaciones 107
Versión Actual 1.0
Última Actualización 2023-08-29
Fecha de Publicación 2023-08-28
Calificación 2.33/5 Total de 3 Calificaciones
Desarrollador sassnathan
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Nathan-S19/OpenLinksInNewTab-extension
Idiomas Soportados 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"
    }
}