Copy Element Text

Copies the text inside elements

Cos'è Copy Element Text?

Copy Element Text è un'estensione di Chrome sviluppata da mistweaver.co, e la sua funzione principale è "Copies the text inside elements".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Copy Element Text

Scarica i file di estensione Copy Element Text in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
URL Ufficiale https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
Descrizione Copies the text inside elements
Dimensione del File 41.63 KB
Conteggio Installazioni 564
Versione Corrente 1.0.0
Ultimo Aggiornamento 2022-10-19
Data di Pubblicazione 2022-10-03
Valutazione 3.60/5 Totale 5 Valutazioni
Sviluppatore mistweaver.co
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}