Header Tags Copier

Copy all header tags (h1-h6) to clipboard

Header Tags Copier là gì?

Header Tags Copier là một tiện ích mở rộng Chrome được phát triển bởi https://ac2a.com, và tính năng chính của nó là "Copy all header tags (h1-h6) to clipboard".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Header Tags Copier

Tải xuống các tệp mở rộng Header Tags Copier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Header Tags Copier Header Tags Copier
ID lghgclalgmdpglinjojjddmlmhlfjaif
URL Chính Thức https://chromewebstore.google.com/detail/header-tags-copier/lghgclalgmdpglinjojjddmlmhlfjaif
Mô tả Copy all header tags (h1-h6) to clipboard
Kích Thước Tệp 4.6 KB
Số Lần Cài Đặt 68
Phiên Bản Hiện Tại 1.9
Cập Nhật Lần Cuối 2023-03-30
Ngày Phát Hành 2023-03-28
Nhà Phát Triển https://ac2a.com
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://www.ac2a.com/contact-me/
URL Trang Chính Sách Bảo Mật https://www.ac2a.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}