Copy Element Text
Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
O que é Copy Element Text?
Copy Element Text é uma extensão do Chrome desenvolvida por bracketsage, e sua principal característica é "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.".
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
Copy Element Text lets you right click on an element and copy its contents or the contents of parent elements. Useful for pages that won't let you highlight.
Informações Básicas da Extensão
Nome | ![]() |
ID | ikhdonfbocnkmhhcaejgopdlknaemhaj |
URL Oficial | https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj |
Descrição | Copy Element Text is a lets you right click on an element and copy its contents to your clipboard. |
Tamanho do Arquivo | 32.97 KB |
Contagem de Instalações | 161 |
Versão Atual | 0.0.2 |
Última Atualização | 2015-08-06 |
Data de Publicação | 2015-08-06 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | bracketsage |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": true, "scripts": [ "jq.js", "background.js" ] }, "content_scripts": [ { "js": [ "jq.js", "content.js" ], "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "description": "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.", "manifest_version": 2, "name": "Copy Element Text", "permissions": [ "activeTab", "contextMenus", "clipboardWrite", "clipboardRead" ], "short_name": "Copy ELement Text", "version": "0.0.2" } |