Octo Preview

Live preview for markdown comments in PRs/Issues on GitHub

Octo Preview là gì?

Octo Preview là một tiện ích mở rộng Chrome được phát triển bởi Andrew Levine, và tính năng chính của nó là "Live preview for markdown comments in PRs/Issues on GitHub".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Octo Preview

Tải xuống các tệp mở rộng Octo Preview dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Octo Preview Octo Preview
ID elomekmlfonmdhmpmdfldcjgdoacjcba
URL Chính Thức https://chromewebstore.google.com/detail/octo-preview/elomekmlfonmdhmpmdfldcjgdoacjcba
Mô tả Live preview for markdown comments in PRs/Issues on GitHub
Kích Thước Tệp 5.16 KB
Số Lần Cài Đặt 131
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2016-05-23
Ngày Phát Hành 2016-05-22
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Andrew Levine
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}