Copy Element Text
Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
Apa itu Copy Element Text?
Copy Element Text adalah ekstensi Chrome yang dikembangkan oleh bracketsage, dan fitur utamanya adalah "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.".
Unduh Berkas CRX Ekstensi Copy Element Text
Unduh file ekstensi Copy Element Text dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | ![]() |
ID | ikhdonfbocnkmhhcaejgopdlknaemhaj |
URL Resmi | https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj |
Deskripsi | Copy Element Text is a lets you right click on an element and copy its contents to your clipboard. |
Ukuran File | 32.97 KB |
Jumlah Instalasi | 161 |
Versi Saat Ini | 0.0.2 |
Terakhir Diperbarui | 2015-08-06 |
Tanggal Publikasi | 2015-08-06 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | bracketsage |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } |