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

File Icons for GitHub and GitLab là một tiện ích mở rộng Chrome được phát triển bởi homerchen, và tính năng chính của nó là "A simple browser tool changes file's icon on GitHub, GitLab, gitea and gogs.".

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

screenshot

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

Tải xuống các tệp mở rộng File Icons for GitHub and GitLab 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

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

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

Tên File Icons for GitHub and GitLab File Icons for GitHub and GitLab
ID ficfmibkjjnpogdcfhfokmihanoldbfe
URL Chính Thức https://chromewebstore.google.com/detail/file-icons-for-github-and/ficfmibkjjnpogdcfhfokmihanoldbfe
Mô tả A simple browser tool changes file's icon on GitHub, GitLab, gitea and gogs.
Kích Thước Tệp 460 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 1.5.2
Cập Nhật Lần Cuối 2024-02-19
Ngày Phát Hành 2020-06-19
Đánh Giá 4.86/5 Tổng số 43 Đánh Giá
Nhà Phát Triển homerchen
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/homerchen19/github-file-icons
URL Trang Trợ Giúp https://github.com/homerchen19/github-file-icons/issues
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}