Copy Element Text
Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
Cos'è Copy Element Text?
Copy Element Text è un'estensione di Chrome sviluppata da bracketsage, e la sua funzione principale è "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.".
Scarica il file CRX dell'estensione Copy Element Text
Scarica i file di estensione Copy Element Text in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | ikhdonfbocnkmhhcaejgopdlknaemhaj |
URL Ufficiale | https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj |
Descrizione | Copy Element Text is a lets you right click on an element and copy its contents to your clipboard. |
Dimensione del File | 32.97 KB |
Conteggio Installazioni | 161 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2015-08-06 |
Data di Pubblicazione | 2015-08-06 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | bracketsage |
Tipo di Pagamento | free |
Lingue Supportate | 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" } |