Link in Current Tab

Force all links to be opened in current tab instead of the new one

¿Qué es Link in Current Tab?

Link in Current Tab es una extensión de Chrome desarrollada por SAGAN, y su función principal es "Force all links to be opened in current tab instead of the new one".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Link in Current Tab

Descarga archivos de extensión Link in Current 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

                        This extension forces all links to be opened in the current tab. It does it in a way that should work in ALL websites, even if the sites that load contents dynamically via AJAX.

Note You can still open a link in the new tab at any time, by clicking a link when holding the "Ctrl" key, or using the middle mouse button to open a link.

无视页面里 a 链接的 target="_blank" 属性, 强制所有链接在当前 tab 页打开.                    

Información Básica de la Extensión

Nombre Link in Current Tab Link in Current Tab
ID cbkcdebbfbegnmbephalggnchfebihbl
URL Oficial https://chromewebstore.google.com/detail/link-in-current-tab/cbkcdebbfbegnmbephalggnchfebihbl
Descripción Force all links to be opened in current tab instead of the new one
Tamaño del Archivo 3.46 KB
Cantidad de Instalaciones 194
Versión Actual 1.0.11
Última Actualización 2023-12-21
Fecha de Publicación 2018-06-18
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador SAGAN
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/sagan/chrome-extension-link-in-current-tab
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link in Current Tab",
    "description": "Force all links to be opened in current tab instead of the new one",
    "version": "1.0.11",
    "author": "Jacques De SAGAN",
    "manifest_version": 2,
    "permissions": [],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}