Octo Preview
Live preview for markdown comments in PRs/Issues on GitHub
Что такое Octo Preview?
Octo Preview - это расширение Chrome, разработанное Andrew Levine, и его основная функция - "Live preview for markdown comments in PRs/Issues on GitHub".
Снимки экрана расширения
Скачать файл CRX расширения Octo Preview
Скачайте файлы расширений Octo Preview в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Automatically displays live previews of comments (including rendered markdown output) as you type. Works anywhere on GitHub where you can leave a comment (including Gists).
If you find any bugs, please open a new issue on the GitHub repo - https://github.com/DrewML/octo-preview/issues/new
**Note** This extension relies on making HTTP requests frequently as you type to get the parsed/rendered Markdown output from GitHub. Not recommended for users on slower connections. Основная информация о расширении
| Название | |
| ID | elomekmlfonmdhmpmdfldcjgdoacjcba |
| Официальный URL | https://chromewebstore.google.com/detail/octo-preview/elomekmlfonmdhmpmdfldcjgdoacjcba |
| Описание | Live preview for markdown comments in PRs/Issues on GitHub |
| Размер файла | 5.16 KB |
| Количество установок | 131 |
| Текущая Версия | 1.0.2 |
| Последнее Обновление | 2016-05-23 |
| Дата публикации | 2016-05-22 |
| Рейтинг | 3.00/5 Всего 2 оценок |
| Разработчик | Andrew Levine |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Octo Preview",
"version": "1.0.2",
"description": "Live preview for markdown comments in PRs\/Issues on GitHub",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"inject.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"live-preview.js",
"live-preview.css"
]
} | |