GitLab-Project-Favicon

Dynamically change GitLab favicons to project logos to distinguish many GitLab tabs easily.

GitLab-Project-Favicon là gì?

GitLab-Project-Favicon là một tiện ích mở rộng Chrome được phát triển bởi Noroch, và tính năng chính của nó là "Dynamically change GitLab favicons to project logos to distinguish many GitLab tabs easily.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitLab-Project-Favicon

Tải xuống các tệp mở rộng GitLab-Project-Favicon 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

                        This extension is enabled in the all sites by default. You can set which GitLab site (e.g. gitlab.com or your self-hosted site) you would like to change favicons. Go chrome://extensions page for further information.                    

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

Tên GitLab-Project-Favicon GitLab-Project-Favicon
ID bakcfpilmcemknpdfdakmfnfikedmodh
URL Chính Thức https://chromewebstore.google.com/detail/gitlab-project-favicon/bakcfpilmcemknpdfdakmfnfikedmodh
Mô tả Dynamically change GitLab favicons to project logos to distinguish many GitLab tabs easily.
Kích Thước Tệp 23.77 KB
Số Lần Cài Đặt 67
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2023-11-08
Ngày Phát Hành 2022-02-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Noroch
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/SogoKato/gitlab-project-favicon
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitLab-Project-Favicon",
    "version": "1.1.2",
    "description": "Dynamically change GitLab favicons to project logos to distinguish many GitLab tabs easily.",
    "icons": {
        "64": "icons\/gitlab-project-favicon-64.png",
        "128": "icons\/gitlab-project-favicon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "gitlab_project_icon.js"
            ]
        }
    ],
    "options_ui": {
        "page": "settings\/options.html"
    },
    "permissions": [
        "storage"
    ]
}