Table of Contents for GitHub

Adds a table of contents to repositories, gists and wikis on GitHub

Что такое Table of Contents for GitHub?

Table of Contents for GitHub - это расширение Chrome, разработанное Arthur Hammer, и его основная функция - "Adds a table of contents to repositories, gists and wikis on GitHub".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Table of Contents for GitHub

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

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

                        No more scrolling around readmes and wikis looking for specific information. Find what you are looking for, quickly.

Works almost anywhere, not just readmes.

- Repos, gists, and wikis
- Any GitHub markup
- Edit and create files and wiki pages right on GitHub
- Simple and unobtrusive

--

Also available for Firefox and Safari. 

For more info and source code: https://github.com/arthurhammer/github-toc                    

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

Название Table of Contents for GitHub Table of Contents for GitHub
ID hlkhpeomjgelmljaknhoboeohhgmmgcn
Официальный URL https://chromewebstore.google.com/detail/table-of-contents-for-git/hlkhpeomjgelmljaknhoboeohhgmmgcn
Описание Adds a table of contents to repositories, gists and wikis on GitHub
Размер файла 11.44 KB
Количество установок 365
Текущая Версия 0.2.5
Последнее Обновление 2016-09-09
Дата публикации 2016-09-09
Рейтинг 4.00/5 Всего 4 оценок
Разработчик Arthur Hammer
Тип оплаты free
Официальный сайт расширения https://github.com/arthurhammer/github-toc
URL страницы помощи https://github.com/arthurhammer/github-toc/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Table of Contents for GitHub",
    "short_name": "GitHub ToC",
    "version": "0.2.5",
    "author": "Arthur Hammer",
    "homepage_url": "https:\/\/github.com\/arthurhammer\/github-toc",
    "description": "Adds a table of contents to repositories, gists and wikis on GitHub",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/gist.github.com\/*\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "github-toc.js"
            ]
        }
    ]
}