Octo Preview

Live preview for markdown comments in PRs/Issues on GitHub

What is Octo Preview?

Octo Preview is a Chrome extension developed by Andrew Levine, and its main feature is "Live preview for markdown comments in PRs/Issues on GitHub".

Extension Screenshots

screenshot

Download Octo Preview Extension CRX File

Download Octo Preview extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Octo Preview Octo Preview
ID elomekmlfonmdhmpmdfldcjgdoacjcba
Official URL https://chromewebstore.google.com/detail/octo-preview/elomekmlfonmdhmpmdfldcjgdoacjcba
Description Live preview for markdown comments in PRs/Issues on GitHub
File Size 5.16 KB
Installation Count 131
Current Version 1.0.2
Last Updated 2016-05-23
Publish Date 2016-05-22
Rating 3.00/5 Total 2 Ratings
Developer Andrew Levine
Payment Type free
Supported Languages 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"
    ]
}