Copy Element Text

Copies the text inside elements

O que é Copy Element Text?

Copy Element Text é uma extensão do Chrome desenvolvida por mistweaver.co, e sua principal característica é "Copies the text inside elements".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Copy Element Text

Baixe arquivos de extensão Copy Element Text no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
URL Oficial https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
Descrição Copies the text inside elements
Tamanho do Arquivo 41.63 KB
Contagem de Instalações 564
Versão Atual 1.0.0
Última Atualização 2022-10-19
Data de Publicação 2022-10-03
Classificação 3.60/5 Total de 5 Avaliações
Desenvolvedor mistweaver.co
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}