Copy Element Text

Copies the text inside elements

Qu'est-ce que Copy Element Text ?

Copy Element Text est une extension Chrome développée par mistweaver.co, et sa fonction principale est "Copies the text inside elements".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Copy Element Text

Téléchargez les fichiers d'extension Copy Element Text 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

                        Enables you to copy the text of an element within the context menu.
Just right click on the link and select "Copy element text".

Full source-code available here: https://github.com/mistweaverco/copy-element-text

If you're looking for a "copy a link text" extension, head over to the companion extension here:

Copy Link Text
https://chrome.google.com/webstore/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh?hl=en                    

Informations de Base sur l'Extension

Nom Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
URL Officiel https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
Description Copies the text inside elements
Taille du Fichier 41.63 KB
Nombre d'Installations 564
Version Actuelle 1.0.0
Dernière Mise à Jour 2022-10-19
Date de Publication 2022-10-03
Évaluation 3.60/5 Total 5 Évaluations
Développeur mistweaver.co
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Element Text",
    "version": "1.0.0",
    "description": "Copies the text inside elements",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-32.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "boot.js"
            ]
        }
    ]
}