Right Click Opens Link in a Background Tab

Right clicking a link opens the link in a new background tab.

¿Qué es Right Click Opens Link in a Background Tab?

Right Click Opens Link in a Background Tab es una extensión de Chrome desarrollada por Etheryte, y su función principal es "Right clicking a link opens the link in a new background tab.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Right Click Opens Link in a Background Tab

Descarga archivos de extensión Right Click Opens Link in a Background 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 makes right clicking on links open the link in a new background tab. In short, the same behavior as middle mouse click or Cmd + Click on a link, but for the right mouse button. This makes opening links in new tabs a breeze on modern trackpads, where gestures already allow you to do most navigation operations without ever needing your keyboard.

This extension requires the following permissions:  

 - Access to your tabs. This is required to add new tabs in the correct order.
 - Access to all pages. This is required to listen for right clicks on links.

This extension does not gather any sort of analytics, tracking, or other such information.                    

Información Básica de la Extensión

Nombre Right Click Opens Link in a Background Tab Right Click Opens Link in a Background Tab
ID njboaameemdigbgpphlidpdcdjmkhfjm
URL Oficial https://chromewebstore.google.com/detail/right-click-opens-link-in/njboaameemdigbgpphlidpdcdjmkhfjm
Descripción Right clicking a link opens the link in a new background tab.
Tamaño del Archivo 25.01 KB
Cantidad de Instalaciones 988
Versión Actual 1.2
Última Actualización 2024-01-05
Fecha de Publicación 2023-01-04
Calificación 4.50/5 Total de 8 Calificaciones
Desarrollador Etheryte
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Etheryte/right-click-opens-link-in-a-background-tab
URL de la Página de Ayuda https://github.com/Etheryte/right-click-opens-link-in-a-background-tab/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Right Click Opens Link in a Background Tab",
    "description": "Right clicking a link opens the link in a new background tab.",
    "version": "1.2",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png",
        "512": "icons\/512.png"
    }
}