Copy Element Text
Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
Copy Element Text là gì?
Copy Element Text là một tiện ích mở rộng Chrome được phát triển bởi bracketsage, và tính năng chính của nó là "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.".
Tải xuống tệp CRX của tiện ích mở rộng Copy Element Text
Tải xuống các tệp mở rộng Copy Element Text dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ![]() |
ID | ikhdonfbocnkmhhcaejgopdlknaemhaj |
URL Chính Thức | https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj |
Mô tả | Copy Element Text is a lets you right click on an element and copy its contents to your clipboard. |
Kích Thước Tệp | 32.97 KB |
Số Lần Cài Đặt | 161 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2015-08-06 |
Ngày Phát Hành | 2015-08-06 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | bracketsage |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } |