OctoEdit

Syntax Highlighting mini-editor for GitHub.com

What is OctoEdit?

OctoEdit is a Chrome extension developed by Andrew Levine, and its main feature is "Syntax Highlighting mini-editor for GitHub.com".

Extension Screenshots

screenshot

Download OctoEdit Extension CRX File

Download OctoEdit 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

                        Adds a new tab to the comment edit area in GitHub, providing Markdown syntax highlighting and tabbing behavior.

Huge thanks to CodeMirror and Marijn Haverbeke for providing a free, MIT-licensed editor.                    

Extension Basic Information

Name OctoEdit OctoEdit
ID ecnglinljpjkbgmdpeiglonddahpbkeb
Official URL https://chromewebstore.google.com/detail/octoedit/ecnglinljpjkbgmdpeiglonddahpbkeb
Description Syntax Highlighting mini-editor for GitHub.com
File Size 1.16 MB
Installation Count 140
Current Version 0.5.1
Last Updated 2016-05-27
Publish Date 2016-05-26
Developer Andrew Levine
Payment Type free
Extension Website https://github.com/DrewML/OctoEdit
Help Page URL https://github.com/DrewML/OctoEdit/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OctoEdit",
    "version": "0.5.1",
    "description": "Syntax Highlighting mini-editor for GitHub.com",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "pagenav-listener.js"
    ]
}