OctoEdit

Syntax Highlighting mini-editor for GitHub.com

OctoEditとは何ですか?

OctoEditはAndrew Levineによって開発されたChromeの拡張機能で、その主な機能は「Syntax Highlighting mini-editor for GitHub.com」です。

拡張機能のスクリーンショット

screenshot

OctoEdit拡張機能のCRXファイルをダウンロード

OctoEdit拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 OctoEdit OctoEdit
ID ecnglinljpjkbgmdpeiglonddahpbkeb
公式URL https://chromewebstore.google.com/detail/octoedit/ecnglinljpjkbgmdpeiglonddahpbkeb
説明 Syntax Highlighting mini-editor for GitHub.com
ファイルサイズ 1.16 MB
インストール数 140
現在のバージョン 0.5.1
最終更新日 2016-05-27
公開日 2016-05-26
開発者 Andrew Levine
支払い方法 free
拡張機能のウェブサイト https://github.com/DrewML/OctoEdit
ヘルプページのURL https://github.com/DrewML/OctoEdit/issues
対応言語 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"
    ]
}