GitHub EditorConfig
EditorConfig support for GitHub
Co to jest GitHub EditorConfig?
GitHub EditorConfig to rozszerzenie Chrome opracowane przez Ingvar Stepanyan, a jego główną funkcją jest „EditorConfig support for GitHub”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub EditorConfig
Pobierz pliki rozszerzeń GitHub EditorConfig w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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).
Podstawowe informacje o rozszerzeniu
Nazwa | GitHub EditorConfig |
ID | bppnolhdpdfmmpeefopdbpmabdpoefjh |
Oficjalny URL | https://chromewebstore.google.com/detail/github-editorconfig/bppnolhdpdfmmpeefopdbpmabdpoefjh |
Opis | EditorConfig support for GitHub |
Rozmiar pliku | 83.14 KB |
Liczba instalacji | 364 |
Aktualna Wersja | 1.1.0 |
Ostatnia Aktualizacja | 2014-10-30 |
Data Publikacji | 2014-10-30 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | Ingvar Stepanyan |
Typ Płatności | free |
Strona Rozszerzenia | http://rreverser.com/gh-github-editorconfig/ |
Adres URL Strony Pomocy | https://github.com/RReverser/github-editorconfig |
Obsługiwane Języki | 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\/*" ] } |