Octo Preview
Live preview for markdown comments in PRs/Issues on GitHub
Co to jest Octo Preview?
Octo Preview to rozszerzenie Chrome opracowane przez Andrew Levine, a jego główną funkcją jest „Live preview for markdown comments in PRs/Issues on GitHub”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Octo Preview
Pobierz pliki rozszerzeń Octo Preview 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
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Octo Preview |
ID | elomekmlfonmdhmpmdfldcjgdoacjcba |
Oficjalny URL | https://chromewebstore.google.com/detail/octo-preview/elomekmlfonmdhmpmdfldcjgdoacjcba |
Opis | Live preview for markdown comments in PRs/Issues on GitHub |
Rozmiar pliku | 5.16 KB |
Liczba instalacji | 131 |
Aktualna Wersja | 1.0.2 |
Ostatnia Aktualizacja | 2016-05-23 |
Data Publikacji | 2016-05-22 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | Andrew Levine |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |