Copy HTML
Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.
Copy HTMLคืออะไร?
Copy HTML เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Justin Mahar และคุณลักษณะหลักของมันคือ "Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy HTML
ดาวน์โหลดไฟล์ส่วนขยาย Copy HTML ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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! ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | indfogjkdbmkihaohndcnkoaheopbhjf |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/copy-html/indfogjkdbmkihaohndcnkoaheopbhjf |
| คำอธิบาย | Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut. |
| ขนาดไฟล์ | 112 KB |
| จำนวนการติดตั้ง | 79 |
| เวอร์ชันปัจจุบัน | 2.0.2 |
| อัปเดตครั้งล่าสุด | 2023-10-23 |
| วันที่เผยแพร่ | 2023-09-14 |
| คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
| ผู้พัฒนา | Justin Mahar |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/justinmahar/chrome-copy-html |
| URL หน้านโยบายความเป็นส่วนตัว | https://justinmahar.com/privacy |
| ภาษาที่รองรับ | 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"
}
} | |