Copy Element Text

Copies the text inside elements

Was ist Copy Element Text?

Copy Element Text ist eine Chrome-Erweiterung, die von mistweaver.co entwickelt wurde, und ihr Hauptmerkmal ist "Copies the text inside elements".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Copy Element Text-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy Element Text-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
Offizielle URL https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
Beschreibung Copies the text inside elements
Dateigröße 41.63 KB
Installationsanzahl 564
Aktuelle Version 1.0.0
Letztes Update 2022-10-19
Veröffentlichungsdatum 2022-10-03
Bewertung 3.60/5 Insgesamt 5 Bewertungen
Entwickler mistweaver.co
E-Mail info@mistweaver.co
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}