Remove Selection

This extension removes selected text.

¿Qué es Remove Selection?

Remove Selection es una extensión de Chrome desarrollada por vncnt.liu, y su función principal es "This extension removes selected text.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Remove Selection

Descarga archivos de extensión Remove Selection 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

                        After selecting some text, you can click the icon on the browser Toolbar, or choose 'Remove Selection' in the right-click Menu. I wrote it because it was one of the feature in FastestFox for Firefox and I love it, but did not find a good alternative in Chrome.                    

Información Básica de la Extensión

Nombre Remove Selection Remove Selection
ID mcfnbphdcohjpejiocghpcajmicbjink
URL Oficial https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink
Descripción This extension removes selected text.
Tamaño del Archivo 10.02 KB
Cantidad de Instalaciones 118
Versión Actual 2.0
Última Actualización 2022-05-11
Fecha de Publicación 2017-08-09
Calificación 4.67/5 Total de 6 Calificaciones
Desarrollador vncnt.liu
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove Selection",
    "description": "This extension removes selected text.",
    "version": "2.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_title": "Remove Selection",
        "default_icon": "images\/icon16.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ]
}