GitHub File Icons

Display file icons on GitHub

What is GitHub File Icons?

GitHub File Icons is a Chrome extension developed by lvarayut, and its main feature is "Display file icons on GitHub".

Extension Screenshots

screenshot
screenshot

Download GitHub File Icons Extension CRX File

Download GitHub File Icons extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name GitHub File Icons GitHub File Icons
ID kkokonbjllgdmblmbichgkkikhlcnekp
Official URL https://chromewebstore.google.com/detail/github-file-icons/kkokonbjllgdmblmbichgkkikhlcnekp
Description Display file icons on GitHub
File Size 435 KB
Installation Count 4,000
Current Version 1.2.6
Last Updated 2020-08-26
Publish Date 2020-06-25
Rating 5.00/5 Total 7 Ratings
Developer lvarayut
Email [email protected]
Payment Type free
Extension Website https://github.com/lvarayut/github-file-icons
Supported Languages 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\/*"
    ]
}