GitHub EditorConfig

EditorConfig support for GitHub

GitHub EditorConfigคืออะไร?

GitHub EditorConfig เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ingvar Stepanyan และคุณลักษณะหลักของมันคือ "EditorConfig support for GitHub"

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย GitHub EditorConfig ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension provides EditorConfig support for GitHub.

It looks for .editorconfig files in the repository the current file belongs to, and applies found settings to code viewer and editor. Branch is always taken into account.

You can also set default editorconfig that will be used for repos without custom one. By default, it fixes tab size to 4 spaces per tab for all files but Ruby (2 spaces per tab).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GitHub EditorConfig GitHub EditorConfig
ID bppnolhdpdfmmpeefopdbpmabdpoefjh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-editorconfig/bppnolhdpdfmmpeefopdbpmabdpoefjh
คำอธิบาย EditorConfig support for GitHub
ขนาดไฟล์ 83.14 KB
จำนวนการติดตั้ง 364
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2014-10-30
วันที่เผยแพร่ 2014-10-30
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Ingvar Stepanyan
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://rreverser.com/gh-github-editorconfig/
URL หน้าช่วยเหลือ https://github.com/RReverser/github-editorconfig
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "includes\/content.js"
            ]
        }
    ],
    "name": "GitHub EditorConfig",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/button.png"
    },
    "web_accessible_resources": [
        "res\/*",
        "assets\/*",
        "icons\/*"
    ],
    "description": "EditorConfig support for GitHub",
    "background": {
        "page": "background.html"
    },
    "homepage_url": "https:\/\/github.com\/RReverser\/github-editorconfig",
    "version": "1.1.0",
    "options_page": "options.html",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "contextMenus",
        "webNavigation",
        "https:\/\/raw.githubusercontent.com\/*"
    ]
}