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 là gì?

Material Icons for GitHub là một tiện ích mở rộng Chrome được phát triển bởi Claudio Santos, và tính năng chính của nó là "Replace the file/folder icons on the GitHub file browser with icons representing the file's type and which tool it is used by.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Material Icons for GitHub

Tải xuống các tệp mở rộng Material Icons for GitHub dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Material Icons for GitHub Material Icons for GitHub
ID bggfcpfjbdkhfhfmkjpbhnkhnpjjeomc
URL Chính Thức https://chromewebstore.google.com/detail/material-icons-for-github/bggfcpfjbdkhfhfmkjpbhnkhnpjjeomc
Mô tả Replace the file/folder icons on the GitHub file browser with icons representing the file's type and which tool it is used by.
Kích Thước Tệp 700 KB
Số Lần Cài Đặt 14,896
Phiên Bản Hiện Tại 1.8.10
Cập Nhật Lần Cuối 2024-02-20
Ngày Phát Hành 2020-12-22
Đánh Giá 5.00/5 Tổng số 52 Đánh Giá
Nhà Phát Triển Claudio Santos
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Claudiohbsantos/github-material-icons-extension
URL Trang Trợ Giúp https://github.com/Claudiohbsantos/github-material-icons-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}