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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}