GitHub EditorConfig

EditorConfig support for GitHub

What is GitHub EditorConfig?

GitHub EditorConfig is a Chrome extension developed by Ingvar Stepanyan, and its main feature is "EditorConfig support for GitHub".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download GitHub EditorConfig Extension CRX File

Download GitHub EditorConfig 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

                        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).                    

Extension Basic Information

Name GitHub EditorConfig GitHub EditorConfig
ID bppnolhdpdfmmpeefopdbpmabdpoefjh
Official URL https://chromewebstore.google.com/detail/github-editorconfig/bppnolhdpdfmmpeefopdbpmabdpoefjh
Description EditorConfig support for GitHub
File Size 83.14 KB
Installation Count 364
Current Version 1.1.0
Last Updated 2014-10-30
Publish Date 2014-10-30
Rating 5.00/5 Total 4 Ratings
Developer Ingvar Stepanyan
Payment Type free
Extension Website http://rreverser.com/gh-github-editorconfig/
Help Page URL https://github.com/RReverser/github-editorconfig
Supported Languages 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\/*"
    ]
}