Extract Headings

Create an outline of your current page

ما هو Extract Headings؟

Extract Headings هو إضافة Chrome تم تطويرها بواسطة meruri، والميزة الرئيسية لها هي "Create an outline of your current page".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Extract Headings

قم بتنزيل ملفات الامتداد Extract Headings بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        source code: https://github.com/himerumeru/extract-headings                    

معلومات أساسية عن التمديد

الاسم Extract Headings Extract Headings
ID ioapcagfihhgfgkadndilpepggjdgajp
عنوان URL الرسمي https://chromewebstore.google.com/detail/extract-headings/ioapcagfihhgfgkadndilpepggjdgajp
الوصف Create an outline of your current page
حجم الملف 7.06 KB
عدد التثبيتات 120
النسخة الحالية 0.0.1
آخر تحديث 2016-07-03
تاريخ النشر 2016-07-03
المطور meruri
نوع الدفع free
موقع الإضافة https://github.com/himerumeru/extract-headings
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extract Headings",
    "description": "Create an outline of your current page",
    "version": "0.0.1",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "Command+Shift+H",
                "windows": "Ctrl+Shift+H"
            }
        }
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/common.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "storage"
    ]
}