File Icons for GitHub and GitLab

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

O que é File Icons for GitHub and GitLab?

File Icons for GitHub and GitLab é uma extensão do Chrome desenvolvida por homerchen, e sua principal característica é "A simple browser tool changes file's icon on GitHub, GitLab, gitea and gogs.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão File Icons for GitHub and GitLab

Baixe arquivos de extensão File Icons for GitHub and GitLab no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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**                    

Informações Básicas da Extensão

Nome File Icons for GitHub and GitLab File Icons for GitHub and GitLab
ID ficfmibkjjnpogdcfhfokmihanoldbfe
URL Oficial https://chromewebstore.google.com/detail/file-icons-for-github-and/ficfmibkjjnpogdcfhfokmihanoldbfe
Descrição A simple browser tool changes file's icon on GitHub, GitLab, gitea and gogs.
Tamanho do Arquivo 460 KB
Contagem de Instalações 20,000
Versão Atual 1.5.2
Última Atualização 2024-02-19
Data de Publicação 2020-06-19
Classificação 4.86/5 Total de 43 Avaliações
Desenvolvedor homerchen
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/homerchen19/github-file-icons
URL da Página de Ajuda https://github.com/homerchen19/github-file-icons/issues
Idiomas Suportados 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:\/\/*\/*"
    ]
}