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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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