Markdown Outline for GitHub

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

O que é Markdown Outline for GitHub?

Markdown Outline for GitHub é uma extensão do Chrome desenvolvida por mitsuruog, e sua principal característica é "It will show you the outline of the markdown file on GitHub.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Markdown Outline for GitHub

Baixe arquivos de extensão Markdown Outline for GitHub no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Markdown Outline for GitHub Markdown Outline for GitHub
ID nkbceicafhlobddjmlflmhbloffdekcd
URL Oficial https://chromewebstore.google.com/detail/markdown-outline-for-gith/nkbceicafhlobddjmlflmhbloffdekcd
Descrição It will show you the outline of the markdown file on GitHub.
Tamanho do Arquivo 31.85 KB
Contagem de Instalações 47
Versão Atual 0.1.3
Última Atualização 2020-09-12
Data de Publicação 2020-06-02
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor mitsuruog
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mitsuruog/markdown-outline-for-github
URL da Página de Ajuda https://github.com/mitsuruog/markdown-outline-for-github/issues
Idiomas Suportados 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
        }
    ]
}