Markdown Outline for GitHub

It will show you the outline of the markdown file on GitHub.

什么是Markdown Outline for GitHub?

Markdown Outline for GitHub是由mitsuruog开发的Chrome扩展程序,该扩展的主要功能是“It will show you the outline of the markdown file on GitHub.”。

扩展截图

screenshot
screenshot

下载Markdown Outline for GitHub扩展crx文件

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

扩展使用说明

                        It will show you the outline of the markdown file on GitHub and Gist.                    

扩展基本信息

名称 Markdown Outline for GitHub Markdown Outline for GitHub
ID nkbceicafhlobddjmlflmhbloffdekcd
官方URL https://chromewebstore.google.com/detail/markdown-outline-for-gith/nkbceicafhlobddjmlflmhbloffdekcd
简介 It will show you the outline of the markdown file on GitHub.
文件大小 31.85 KB
安装次数 47
当前版本 0.1.3
更新时间 2020-09-12
上架时间 2020-06-02
评分 5.00/5 共1次评分
开发者 mitsuruog
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/mitsuruog/markdown-outline-for-github
帮助页面URL https://github.com/mitsuruog/markdown-outline-for-github/issues
支持的语言 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.1.3",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "default_locale": "ja",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "https:\/\/github.com\/*",
        "https:\/\/gist.github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}