Github Toc

Generate TOC(Table of Content) for Github readme and Github Wiki

Что такое Github Toc?

Github Toc - это расширение Chrome, разработанное Charlie Jade, и его основная функция - "Generate TOC(Table of Content) for Github readme and Github Wiki".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Github Toc

Скачайте файлы расширений Github Toc в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Allows to show you a "table of content" generated by Github project README or WIKI. Source Code - https://github.com/summerblue/github-toc                    

Основная информация о расширении

Название Github Toc Github Toc
ID nalkpgbfaadkpckoadhlkihofnbhfhek
Официальный URL https://chromewebstore.google.com/detail/github-toc/nalkpgbfaadkpckoadhlkihofnbhfhek
Описание Generate TOC(Table of Content) for Github readme and Github Wiki
Размер файла 704 KB
Количество установок 745
Текущая Версия 1.0
Последнее Обновление 2014-10-03
Дата публикации 2014-10-03
Рейтинг 4.57/5 Всего 7 оценок
Разработчик Charlie Jade
Тип оплаты free
Официальный сайт расширения https://github.com/summerblue/github-toc
URL страницы помощи https://github.com/summerblue/github-toc/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Toc",
    "version": "1.0",
    "author": "Charlie Jade  (http:\/\/summerblue.me)",
    "description": "Generate TOC(Table of Content) for Github readme and Github Wiki",
    "icons": {
        "16": "img\/github-toc-16.png",
        "48": "img\/github-toc-48.png",
        "128": "img\/github-toc-128.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "scripts\/jquery-2.1.1.min.js",
                "scripts\/toc.min.js",
                "scripts\/github-toc.js"
            ],
            "css": [
                "css\/github-toc.css"
            ]
        }
    ]
}