Octo Preview

Live preview for markdown comments in PRs/Issues on GitHub

Apa itu Octo Preview?

Octo Preview adalah ekstensi Chrome yang dikembangkan oleh Andrew Levine, dan fitur utamanya adalah "Live preview for markdown comments in PRs/Issues on GitHub".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Octo Preview

Unduh file ekstensi Octo Preview dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Octo Preview Octo Preview
ID elomekmlfonmdhmpmdfldcjgdoacjcba
URL Resmi https://chromewebstore.google.com/detail/octo-preview/elomekmlfonmdhmpmdfldcjgdoacjcba
Deskripsi Live preview for markdown comments in PRs/Issues on GitHub
Ukuran File 5.16 KB
Jumlah Instalasi 131
Versi Saat Ini 1.0.2
Terakhir Diperbarui 2016-05-23
Tanggal Publikasi 2016-05-22
Penilaian 3.00/5 Total 2 Penilaian
Pengembang Andrew Levine
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}