Close Tab by Double Right Click

Close tab by double right clicking anywhere on the page. Inspired by "Rights To Close" legacy extension for Mozilla Firefox.

¿Qué es Close Tab by Double Right Click?

Close Tab by Double Right Click es una extensión de Chrome desarrollada por https://webextensions.org, y su función principal es "Close tab by double right clicking anywhere on the page. Inspired by "Rights To Close" legacy extension for Mozilla Firefox.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Close Tab by Double Right Click

Descarga archivos de extensión Close Tab by Double Right Click 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

                        Double right click anywhere on the page to close the active tab.

Open source:
* https://github.com/webextensions/close-tab-by-double-right-click

Created by:
* Priyank Parashar

Notes:

* To enable this extension in "incognito" window mode or for "file:///" URLs, you will need to provide permissions for this by going to "chrome://extensions".

* Close Tab by Double Right Click implements an alternative approach for closing "chrome:///", "about:blank" and other special tabs. This is due to technical limitations of Chrome API. In these tabs, you would find a "Close Tab" context-menu entry which is shown when you right click anywhere on the page.

* To configure the extension further, please visit "chrome://extensions/" > "Details" (for this extension) > "Extension options"

* The idea of this extension is inspired by "Rights To Close" extension for Mozilla Firefox.

Connect to us:
* https://github.com/webextensions/close-tab-by-double-right-click
* https://twitter.com/webextensions
* Priyank Parashar - https://linkedin.com/in/ParasharPriyank/                    

Información Básica de la Extensión

Nombre Close Tab by Double Right Click Close Tab by Double Right Click
ID klngijkfgagcnegkffeckmkdpnpmbdpm
URL Oficial https://chromewebstore.google.com/detail/close-tab-by-double-right/klngijkfgagcnegkffeckmkdpnpmbdpm
Descripción Close tab by double right clicking anywhere on the page. Inspired by "Rights To Close" legacy extension for Mozilla Firefox.
Tamaño del Archivo 19.36 KB
Cantidad de Instalaciones 6,463
Versión Actual 1.1.0
Última Actualización 2021-10-11
Fecha de Publicación 2017-11-17
Calificación 2.88/5 Total de 64 Calificaciones
Desarrollador https://webextensions.org
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.webextensions.org/
URL de la Página de Ayuda https://github.com/webextensions/close-tab-by-double-right-click/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close Tab by Double Right Click",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "Close tab by double right clicking anywhere on the page. Inspired by \"Rights To Close\" legacy extension for Mozilla Firefox.",
    "homepage_url": "https:\/\/webextensions.org\/",
    "icons": {
        "16": "images\/double-click-16x16.png",
        "128": "images\/double-click-128x128.png"
    },
    "offline_enabled": true,
    "permissions": [
        "",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "page": "background.html"
    }
}