GitHub EditorConfig

EditorConfig support for GitHub

Τι είναι το GitHub EditorConfig;

Το GitHub EditorConfig είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ingvar Stepanyan, και η κύρια λειτουργία του είναι "EditorConfig support for GitHub".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης GitHub EditorConfig

Λήψη αρχείων επέκτασης 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 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\/*"
    ]
}