Markdown Menu for GitHub

Adds a navigation menu to any readme or Markdown file on GitHub.

什么是Markdown Menu for GitHub?

Markdown Menu for GitHub是由Will Klein开发的Chrome扩展程序,该扩展的主要功能是“Adds a navigation menu to any readme or Markdown file on GitHub.”。

扩展截图

screenshot
screenshot

下载Markdown Menu for GitHub扩展crx文件

下载Markdown Menu for GitHub扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Independently developed and unaffiliated with GitHub.

This extension is open source: https://github.com/willklein/markdown-menu

---

GitHub READMEs and Markdown 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.

Click the three-bar icon at the top of any Markdown file to view the menu. 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.                    

扩展基本信息

名称 Markdown Menu for GitHub Markdown Menu for GitHub
ID jekgocfoijmbgcjejohdgmojaejofdpo
官方URL https://chromewebstore.google.com/detail/markdown-menu-for-github/jekgocfoijmbgcjejohdgmojaejofdpo
简介 Adds a navigation menu to any readme or Markdown file on GitHub.
文件大小 5.8 KB
安装次数 1,048
当前版本 1.1.0
更新时间 2018-08-09
上架时间 2018-08-09
评分 4.78/5 共9次评分
开发者 Will Klein
付费类型 free
扩展官网 https://github.com/willklein/markdown-menu
帮助页面URL https://waffle.io/willklein/markdown-menu
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "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"
    ]
}