Markdown Outline for GitHub

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

Co to jest Markdown Outline for GitHub?

Markdown Outline for GitHub to rozszerzenie Chrome opracowane przez mitsuruog, a jego główną funkcją jest „It will show you the outline of the markdown file on GitHub.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Markdown Outline for GitHub

Pobierz pliki rozszerzeń Markdown Outline for GitHub w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Markdown Outline for GitHub Markdown Outline for GitHub
ID nkbceicafhlobddjmlflmhbloffdekcd
Oficjalny URL https://chromewebstore.google.com/detail/markdown-outline-for-gith/nkbceicafhlobddjmlflmhbloffdekcd
Opis It will show you the outline of the markdown file on GitHub.
Rozmiar pliku 31.85 KB
Liczba instalacji 47
Aktualna Wersja 0.1.3
Ostatnia Aktualizacja 2020-09-12
Data Publikacji 2020-06-02
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper mitsuruog
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mitsuruog/markdown-outline-for-github
Adres URL Strony Pomocy https://github.com/mitsuruog/markdown-outline-for-github/issues
Obsługiwane Języki 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
        }
    ]
}