File Icons for GitHub and GitLab

A simple browser tool changes file's icon on GitHub, GitLab, gitea and gogs.

File Icons for GitHub and GitLab란 무엇입니까?

File Icons for GitHub and GitLab은(는) homerchen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple browser tool changes file's icon on GitHub, GitLab, gitea and gogs."입니다.

확장 프로그램 스크린샷

screenshot

File Icons for GitHub and GitLab 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        On GitHub, no matter what kind of file is, their icons are all same. However, in your fancy editor, there are some packages which give every filetype an unique icon.

Therefore, I build a simple extension to replace original file icon with filetype-specific icons. This improves visual recognition on GitHub, GitLab, etc.

Hope you like it!

**This extension is not a project of GitHub or any company**                    

확장 프로그램 기본 정보

이름 File Icons for GitHub and GitLab File Icons for GitHub and GitLab
ID ficfmibkjjnpogdcfhfokmihanoldbfe
공식 URL https://chromewebstore.google.com/detail/file-icons-for-github-and/ficfmibkjjnpogdcfhfokmihanoldbfe
설명 A simple browser tool changes file's icon on GitHub, GitLab, gitea and gogs.
파일 크기 460 KB
설치 횟수 20,000
현재 버전 1.5.2
최근 업데이트 2024-02-19
출시 날짜 2020-06-19
평점 4.86/5 총 43 개의 평점
개발자 homerchen
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/homerchen19/github-file-icons
도움말 페이지 URL https://github.com/homerchen19/github-file-icons/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A simple browser tool changes file's icon on GitHub, GitLab, gitea and gogs.",
    "version": "1.5.2",
    "manifest_version": 2,
    "name": "File Icons for GitHub and GitLab",
    "author": "homerchen19",
    "homepage_url": "https:\/\/github.com\/homerchen19\/github-file-icons",
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gitlab.com\/*",
                "https:\/\/*.gogs.io\/*",
                "https:\/\/*.gitea.io\/*"
            ],
            "js": [
                "content.bundle.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "64": "img\/icon-64.png",
        "128": "img\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon-64.png"
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "web_accessible_resources": [
        "*.woff2"
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab",
        "https:\/\/github.com\/*",
        "https:\/\/gitlab.com\/*",
        "https:\/\/*.gogs.io\/*",
        "https:\/\/*.gitea.io\/*"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}