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"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Octo Preview Octo Preview
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"
    ]
}