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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://www.ac2a.com/contact-me/
عنوان صفحة سياسة الخصوصية 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"
            ]
        }
    ]
}