Copy Element Text

Copies the text inside elements

Co je Copy Element Text?

Copy Element Text je rozšíření Chrome vyvinuté mistweaver.co, a jeho hlavní funkcí je „Copies the text inside elements“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Copy Element Text

Stáhněte si soubory rozšíření Copy Element Text ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
Oficiální URL https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
Popis Copies the text inside elements
Velikost souboru 41.63 KB
Počet instalací 564
Aktuální Verze 1.0.0
Poslední Aktualizace 2022-10-19
Datum Vydání 2022-10-03
Hodnocení 3.60/5 Celkem 5 Hodnocení
Vývojář mistweaver.co
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}