GitHub EditorConfig

EditorConfig support for GitHub

O que é GitHub EditorConfig?

GitHub EditorConfig é uma extensão do Chrome desenvolvida por Ingvar Stepanyan, e sua principal característica é "EditorConfig support for GitHub".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão GitHub EditorConfig

Baixe arquivos de extensão GitHub EditorConfig no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome GitHub EditorConfig GitHub EditorConfig
ID bppnolhdpdfmmpeefopdbpmabdpoefjh
URL Oficial https://chromewebstore.google.com/detail/github-editorconfig/bppnolhdpdfmmpeefopdbpmabdpoefjh
Descrição EditorConfig support for GitHub
Tamanho do Arquivo 83.14 KB
Contagem de Instalações 364
Versão Atual 1.1.0
Última Atualização 2014-10-30
Data de Publicação 2014-10-30
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Ingvar Stepanyan
Tipo de Pagamento free
Site da Extensão http://rreverser.com/gh-github-editorconfig/
URL da Página de Ajuda https://github.com/RReverser/github-editorconfig
Idiomas Suportados 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\/*"
    ]
}