OctoEdit

Syntax Highlighting mini-editor for GitHub.com

OctoEditคืออะไร?

OctoEdit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrew Levine และคุณลักษณะหลักของมันคือ "Syntax Highlighting mini-editor for GitHub.com"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OctoEdit

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}