Octo Preview

Live preview for markdown comments in PRs/Issues on GitHub

Wat is Octo Preview?

Octo Preview is een Chrome-extensie ontwikkeld door Andrew Levine, en de belangrijkste functie is "Live preview for markdown comments in PRs/Issues on GitHub".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Octo Preview

Download Octo Preview-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Octo Preview Octo Preview
ID elomekmlfonmdhmpmdfldcjgdoacjcba
Officiële URL https://chromewebstore.google.com/detail/octo-preview/elomekmlfonmdhmpmdfldcjgdoacjcba
Beschrijving Live preview for markdown comments in PRs/Issues on GitHub
Bestandsgrootte 5.16 KB
Aantal Installaties 131
Huidige Versie 1.0.2
Laatst Bijgewerkt 2016-05-23
Publicatiedatum 2016-05-22
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Andrew Levine
Betalingswijze free
Ondersteunde Talen 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"
    ]
}