Copy HTML
Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.
Copy HTML là gì?
Copy HTML là một tiện ích mở rộng Chrome được phát triển bởi Justin Mahar, và tính năng chính của nó là "Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Copy HTML
Tải xuống các tệp mở rộng Copy HTML 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
Button method: 1. Click the extension icon 2. Click "Copy HTML" button 3. HTML is copied to clipboard Keyboard shortcut method: 1. Click the page 2. Press the keyboard shortcut: Ctrl+Shift+Alt+C 3. HTML is copied to clipboard Quick, simple, and easy!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Copy HTML |
ID | indfogjkdbmkihaohndcnkoaheopbhjf |
URL Chính Thức | https://chromewebstore.google.com/detail/copy-html/indfogjkdbmkihaohndcnkoaheopbhjf |
Mô tả | Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut. |
Kích Thước Tệp | 112 KB |
Số Lần Cài Đặt | 79 |
Phiên Bản Hiện Tại | 2.0.2 |
Cập Nhật Lần Cuối | 2023-10-23 |
Ngày Phát Hành | 2023-09-14 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Justin Mahar |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/justinmahar/chrome-copy-html |
URL Trang Chính Sách Bảo Mật | https://justinmahar.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy HTML", "description": "Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.", "version": "2.0.2", "manifest_version": 3, "content_scripts": [ { "js": [ "src\/_js\/content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "action": { "default_popup": "src\/popup\/popup.html", "default_icon": "images\/icon-512.png" }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png", "512": "images\/icon-512.png" } } |