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! 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |