GitHub File Icons

Display file icons on GitHub

Qu'est-ce que GitHub File Icons ?

GitHub File Icons est une extension Chrome développée par lvarayut, et sa fonction principale est "Display file icons on GitHub".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension GitHub File Icons

Téléchargez les fichiers d'extension GitHub File Icons au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        ## 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`)                    

Informations de Base sur l'Extension

Nom GitHub File Icons GitHub File Icons
ID kkokonbjllgdmblmbichgkkikhlcnekp
URL Officiel https://chromewebstore.google.com/detail/github-file-icons/kkokonbjllgdmblmbichgkkikhlcnekp
Description Display file icons on GitHub
Taille du Fichier 435 KB
Nombre d'Installations 4,000
Version Actuelle 1.2.6
Dernière Mise à Jour 2020-08-26
Date de Publication 2020-06-25
Évaluation 5.00/5 Total 7 Évaluations
Développeur lvarayut
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/lvarayut/github-file-icons
Langues Prises en Charge 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\/*"
    ]
}