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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}