GitHub EditorConfig
EditorConfig support for GitHub
Cos'è GitHub EditorConfig?
GitHub EditorConfig è un'estensione di Chrome sviluppata da Ingvar Stepanyan, e la sua funzione principale è "EditorConfig support for GitHub".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub EditorConfig
Scarica i file di estensione GitHub EditorConfig in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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).
Informazioni di Base sull'Estensione
Nome | GitHub EditorConfig |
ID | bppnolhdpdfmmpeefopdbpmabdpoefjh |
URL Ufficiale | https://chromewebstore.google.com/detail/github-editorconfig/bppnolhdpdfmmpeefopdbpmabdpoefjh |
Descrizione | EditorConfig support for GitHub |
Dimensione del File | 83.14 KB |
Conteggio Installazioni | 364 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2014-10-30 |
Data di Pubblicazione | 2014-10-30 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | Ingvar Stepanyan |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://rreverser.com/gh-github-editorconfig/ |
URL della Pagina di Aiuto | https://github.com/RReverser/github-editorconfig |
Lingue Supportate | 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\/*" ] } |