GitHub EditorConfig

EditorConfig support for GitHub

什麼是GitHub EditorConfig?

GitHub EditorConfig是由Ingvar Stepanyan開發的Chrome擴展程式,該擴展的主要功能是“EditorConfig support for GitHub”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載GitHub EditorConfig擴展crx文件

下載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
官方網址 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\/*"
    ]
}