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.”。

扩展截图

screenshot

下载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 Copy HTML
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"
    }
}