Header Tags Copier

Copy all header tags (h1-h6) to clipboard

什么是Header Tags Copier?

Header Tags Copier是由https://ac2a.com开发的Chrome扩展程序,该扩展的主要功能是“Copy all header tags (h1-h6) to clipboard”。

扩展截图

screenshot

下载Header Tags Copier扩展crx文件

下载Header Tags Copier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Header Tags Copier is a convenient Chrome add-on designed to quickly and effortlessly copy all header tags (h1 to h6) from any webpage you visit. With a simple click of the extension's icon, the add-on extracts header tags along with their respective types (e.g., H1, H2, etc.) and copies them to your clipboard. A notification confirms the successful completion of the process, allowing you to easily paste the copied headers into a text document for further reference or analysis. This user-friendly tool is perfect for content creators, researchers, or anyone who frequently works with web content and wants to streamline their workflow.                    

扩展基本信息

名称 Header Tags Copier Header Tags Copier
ID lghgclalgmdpglinjojjddmlmhlfjaif
官方URL https://chromewebstore.google.com/detail/header-tags-copier/lghgclalgmdpglinjojjddmlmhlfjaif
简介 Copy all header tags (h1-h6) to clipboard
文件大小 4.6 KB
安装次数 68
当前版本 1.9
更新时间 2023-03-30
上架时间 2023-03-28
开发者 https://ac2a.com
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://www.ac2a.com/contact-me/
隐私政策页面URL https://www.ac2a.com/privacy-policy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Header Tags Copier",
    "version": "1.9",
    "description": "Copy all header tags (h1-h6) to clipboard",
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "notifications"
    ],
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}