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
官方網址 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"
            ]
        }
    ]
}