Copy Text from HTML Extension

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

Qu'est-ce que Copy Text from HTML Extension ?

Copy Text from HTML Extension est une extension Chrome développée par juniormayhe, et sa fonction principale est "Copy text content of an HTML element with Shift + Alt + C".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Copy Text from HTML Extension

Téléchargez les fichiers d'extension Copy Text from HTML Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        "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.                    

Informations de Base sur l'Extension

Nom Copy Text from HTML Extension Copy Text from HTML Extension
ID lidcepffhffngghmeiooaeefcicggcpg
URL Officiel https://chromewebstore.google.com/detail/copy-text-from-html-exten/lidcepffhffngghmeiooaeefcicggcpg
Description Copy text content of an HTML element with Shift + Alt + C
Taille du Fichier 1.54 MB
Nombre d'Installations 55
Version Actuelle 1.0
Dernière Mise à Jour 2023-05-02
Date de Publication 2023-05-01
Développeur juniormayhe
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://juniormayhe.com/contact
URL de la Page de Politique de Confidentialité https://github.com/juniormayhe/PipelineFilterExtension/blob/master/privacy.md
Langues Prises en Charge 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"
        }
    }
}