Copy Element Text

Copies the text inside elements

Hvad er Copy Element Text?

Copy Element Text er en Chrome-udvidelse udviklet af mistweaver.co, og dens hovedfunktion er "Copies the text inside elements".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Copy Element Text-udvidelses-CRX-fil

Download Copy Element Text-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
Officiel URL https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
Beskrivelse Copies the text inside elements
Filstørrelse 41.63 KB
Antal Installationer 564
Nuværende Version 1.0.0
Senest Opdateret 2022-10-19
Udgivelsesdato 2022-10-03
Bedømmelse 3.60/5 Samlet 5 Bedømmelser
Udvikler mistweaver.co
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}