Copy Text from HTML Extension

Copy text content of an HTML element with Shift + Alt + C

¿Qué es Copy Text from HTML Extension?

Copy Text from HTML Extension es una extensión de Chrome desarrollada por juniormayhe, y su función principal es "Copy text content of an HTML element with Shift + Alt + C".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Copy Text from HTML Extension

Descarga archivos de extensión Copy Text from HTML Extension 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

                        "Copy Text from HTML" allows users to copy the text content of an HTML element with ease. When activated with the hotkey Shift + Alt + C, it removes all HTML tags and attributes, JavaScript code, CSS styles, empty and blank lines, special characters, and commented code, leaving only the plain text content. 

It also handles special cases, such as select elements, lists, and anchor tags within lists, to provide the user with the most accurate and useful text content possible. 

With this extension, copying text from HTML has never been easier or more reliable.

If you find any trouble, try to right click the desired element and then press Shift + Alt + C.                    

Información Básica de la Extensión

Nombre Copy Text from HTML Extension Copy Text from HTML Extension
ID lidcepffhffngghmeiooaeefcicggcpg
URL Oficial https://chromewebstore.google.com/detail/copy-text-from-html-exten/lidcepffhffngghmeiooaeefcicggcpg
Descripción Copy text content of an HTML element with Shift + Alt + C
Tamaño del Archivo 1.54 MB
Cantidad de Instalaciones 55
Versión Actual 1.0
Última Actualización 2023-05-02
Fecha de Publicación 2023-05-01
Desarrollador juniormayhe
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://juniormayhe.com/contact
URL de la Página de Política de Privacidad https://github.com/juniormayhe/PipelineFilterExtension/blob/master/privacy.md
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Text from HTML Extension",
    "version": "1.0",
    "description": "Copy text content of an HTML element with Shift + Alt + C",
    "author": "junior mayhe",
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "store\/16.png",
        "32": "store\/32.png",
        "48": "store\/48.png",
        "128": "store\/128.png"
    },
    "action": {
        "default_title": "Copy Text",
        "default_icon": "icon.png"
    },
    "commands": {
        "copy-text": {
            "suggested_key": {
                "default": "Shift+Alt+C"
            },
            "description": "Copy text only from selected HTML element"
        }
    }
}