GitHub Markdown Sidebar Menu

Adds a navigation menu to readme file in GitHub sidebar.

GitHub Markdown Sidebar Menuคืออะไร?

GitHub Markdown Sidebar Menu เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Amo Wu และคุณลักษณะหลักของมันคือ "Adds a navigation menu to readme file in GitHub sidebar."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Markdown Sidebar Menu

ดาวน์โหลดไฟล์ส่วนขยาย GitHub Markdown Sidebar Menu ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        GitHub README documents don't always include a Table of Contents. Well-documented repos have longer documents that can be difficult to navigate. This extension will automagically generate and add a navigation menu with a table of contents in GitHub repo homepage sidebar.

Click on a link to scroll to that section of the document. That's it!

---

Permissions requested:

- Read and change your data on github.com

This extension is scoped and enabled only when accessing https://github.com/*. This extension looks for Markdown headers, generates a navigation menu and adds it to Markdown views on GitHub.

- Read your browsing history

For this extension to work across page navigations within github.com, permissions are necessary to use chrome.webNavigation.onHistoryStateUpdated. This lets the extension hook into page navigations and trigger without full page refreshes.

This extension is open source and available at: https://github.com/amowu/github-markdown-menu                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GitHub Markdown Sidebar Menu GitHub Markdown Sidebar Menu
ID cjbnpllhpmicaacocjjfiickmbggdlkj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-markdown-sidebar-m/cjbnpllhpmicaacocjjfiickmbggdlkj
คำอธิบาย Adds a navigation menu to readme file in GitHub sidebar.
ขนาดไฟล์ 8.44 KB
จำนวนการติดตั้ง 105
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2015-07-30
วันที่เผยแพร่ 2015-07-30
คะแนน 1.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Amo Wu
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "persistent": false,
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "css": [
                "styles\/contentstyle.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*\/*",
        "webNavigation"
    ]
}