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是由Justin Mahar開發的Chrome擴展程式,該擴展的主要功能是“Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.”。
擴展截圖
下載Copy HTML擴展crx文件
下載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!
擴展基本資訊
名稱 | Copy HTML |
ID | indfogjkdbmkihaohndcnkoaheopbhjf |
官方網址 | 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" } } |