Material Icons for GitHub

Replace the file/folder icons on the GitHub file browser with icons representing the file's type and which tool it is used by.

什么是Material Icons for GitHub?

Material Icons for GitHub是由Claudio Santos开发的Chrome扩展程序,该扩展的主要功能是“Replace the file/folder icons on the GitHub file browser with icons representing the file's type and which tool it is used by.”。

扩展截图

screenshot
screenshot

下载Material Icons for GitHub扩展crx文件

下载Material Icons for GitHub扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Replace GitHub's default icons with icons from Visual Studio Code's Material Icon Theme icons. Use the same icons on your code editor and on github.com, and quickly identify file types, configuration files and project scaffolding at a glance.

This extension pull icons and replacement lists directly from the open source vscode extension https://github.com/PKief/vscode-material-icon-theme. 

This extension can replace icons on many other leading source control platforms.

For bug reports, please open Issues on the extensions repository at https://github.com/Claudiohbsantos/github-material-icons-extension

Don't forget to star the github repository if you like the extension.                    

扩展基本信息

名称 Material Icons for GitHub Material Icons for GitHub
ID bggfcpfjbdkhfhfmkjpbhnkhnpjjeomc
官方URL https://chromewebstore.google.com/detail/material-icons-for-github/bggfcpfjbdkhfhfmkjpbhnkhnpjjeomc
简介 Replace the file/folder icons on the GitHub file browser with icons representing the file's type and which tool it is used by.
文件大小 700 KB
安装次数 14,896
当前版本 1.8.10
更新时间 2024-02-20
上架时间 2020-12-22
评分 5.00/5 共52次评分
开发者 Claudio Santos
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Claudiohbsantos/github-material-icons-extension
帮助页面URL https://github.com/Claudiohbsantos/github-material-icons-extension/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Material Icons for GitHub",
    "version": "1.8.10",
    "description": "Replace the file\/folder icons on the GitHub file browser with icons representing the file's type and which tool it is used by.",
    "homepage_url": "https:\/\/github.com\/Claudiohbsantos\/github-material-icons-extension",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*",
                "*:\/\/bitbucket.org\/*",
                "*:\/\/dev.azure.com\/*",
                "*:\/\/*.visualstudio.com\/*",
                "*:\/\/gitea.com\/*",
                "*:\/\/gitlab.com\/*",
                "*:\/\/gitee.com\/*",
                "*:\/\/sourceforge.net\/*"
            ],
            "js": [
                ".\/main.js"
            ],
            "css": [
                ".\/injected-styles.css"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "*.svg"
            ],
            "matches": [
                "*:\/\/github.com\/*",
                "*:\/\/bitbucket.org\/*",
                "*:\/\/dev.azure.com\/*",
                "*:\/\/*.visualstudio.com\/*",
                "*:\/\/gitea.com\/*",
                "*:\/\/gitlab.com\/*",
                "*:\/\/gitee.com\/*",
                "*:\/\/sourceforge.net\/*"
            ]
        }
    ],
    "action": {
        "default_title": "Material Icons Settings",
        "default_popup": "settings-popup.html",
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        }
    }
}