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文件

下載File Icons for GitHub and GitLab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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:\/\/*\/*"
    ]
}