GitHub EditorConfig

EditorConfig support for GitHub

GitHub EditorConfig là gì?

GitHub EditorConfig là một tiện ích mở rộng Chrome được phát triển bởi Ingvar Stepanyan, và tính năng chính của nó là "EditorConfig support for GitHub".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub EditorConfig

Tải xuống các tệp mở rộng GitHub EditorConfig dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub EditorConfig GitHub EditorConfig
ID bppnolhdpdfmmpeefopdbpmabdpoefjh
URL Chính Thức https://chromewebstore.google.com/detail/github-editorconfig/bppnolhdpdfmmpeefopdbpmabdpoefjh
Mô tả EditorConfig support for GitHub
Kích Thước Tệp 83.14 KB
Số Lần Cài Đặt 364
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2014-10-30
Ngày Phát Hành 2014-10-30
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Ingvar Stepanyan
Loại Thanh Toán free
Trang Web Mở Rộng http://rreverser.com/gh-github-editorconfig/
URL Trang Trợ Giúp https://github.com/RReverser/github-editorconfig
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}