Copy Element Text

Copies the text inside elements

Wat is Copy Element Text?

Copy Element Text is een Chrome-extensie ontwikkeld door mistweaver.co, en de belangrijkste functie is "Copies the text inside elements".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Copy Element Text

Download Copy Element Text-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
Officiële URL https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
Beschrijving Copies the text inside elements
Bestandsgrootte 41.63 KB
Aantal Installaties 564
Huidige Versie 1.0.0
Laatst Bijgewerkt 2022-10-19
Publicatiedatum 2022-10-03
Beoordeling 3.60/5 Totaal 5 Beoordelingen
Ontwikkelaar mistweaver.co
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}