Markdown Outline for GitHub
It will show you the outline of the markdown file on GitHub.
Что такое Markdown Outline for GitHub?
Markdown Outline for GitHub - это расширение Chrome, разработанное mitsuruog, и его основная функция - "It will show you the outline of the markdown file on GitHub.".
Снимки экрана расширения
Скачать файл CRX расширения Markdown Outline for GitHub
Скачайте файлы расширений 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 |
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 } ] } |