GitHub EditorConfig
EditorConfig support for GitHub
GitHub EditorConfigとは何ですか?
GitHub EditorConfigはIngvar Stepanyanによって開発されたChromeの拡張機能で、その主な機能は「EditorConfig support for GitHub」です。
拡張機能のスクリーンショット
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 |
ID | bppnolhdpdfmmpeefopdbpmabdpoefjh |
公式URL | 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\/*" ] } |