GitHub File Icons

Display file icons on GitHub

Τι είναι το GitHub File Icons;

Το GitHub File Icons είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lvarayut, και η κύρια λειτουργία του είναι "Display file icons on GitHub".

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

screenshot
screenshot

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

Λήψη αρχείων επέκτασης GitHub File Icons σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ## Highlights

- Beautiful file icons ported from [Atom](https://github.com/file-icons/atom)
- Perfect combination with [Octotree](https://github.com/buunguyen/octotree) extension
- Support Github Enterprise (Access your Github Enterprise, right click on the extension icon, and choose `Enable Github Enterprise`)
- Support both color and dark icons (Right click on the extension icon, and choose `Change icons color`)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα GitHub File Icons GitHub File Icons
ID kkokonbjllgdmblmbichgkkikhlcnekp
Επίσημο URL https://chromewebstore.google.com/detail/github-file-icons/kkokonbjllgdmblmbichgkkikhlcnekp
Περιγραφή Display file icons on GitHub
Μέγεθος Αρχείου 435 KB
Αριθμός Εγκαταστάσεων 4,000
Τρέχουσα Έκδοση 1.2.6
Τελευταία Ενημέρωση 2020-08-26
Ημερομηνία Δημοσίευσης 2020-06-25
Αξιολόγηση 5.00/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής lvarayut
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/lvarayut/github-file-icons
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub File Icons",
    "version": "1.2.6",
    "manifest_version": 2,
    "description": "Display file icons on GitHub",
    "homepage_url": "https:\/\/github.com\/lvarayut\/github-file-icons",
    "icons": {
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon-browser.png"
    },
    "author": "Varayut Lerdkanlayanawat",
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "http:\/\/github.com\/*",
        "https:\/\/github.com\/*"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "css": [
                "vendors\/file-icons-js\/css\/style.css",
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "vendors\/file-icons-js\/fonts\/*"
    ]
}