Header Tags Copier

Copy all header tags (h1-h6) to clipboard

Header Tags Copierคืออะไร?

Header Tags Copier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://ac2a.com และคุณลักษณะหลักของมันคือ "Copy all header tags (h1-h6) to clipboard"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Header Tags Copier

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}