GitLab-Project-Favicon
Dynamically change GitLab favicons to project logos to distinguish many GitLab tabs easily.
GitLab-Project-Faviconとは何ですか?
GitLab-Project-FaviconはNorochによって開発されたChromeの拡張機能で、その主な機能は「Dynamically change GitLab favicons to project logos to distinguish many GitLab tabs easily.」です。
拡張機能のスクリーンショット
GitLab-Project-Favicon拡張機能のCRXファイルをダウンロード
GitLab-Project-Favicon拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | GitLab-Project-Favicon |
ID | bakcfpilmcemknpdfdakmfnfikedmodh |
公式URL | https://chromewebstore.google.com/detail/gitlab-project-favicon/bakcfpilmcemknpdfdakmfnfikedmodh |
説明 | Dynamically change GitLab favicons to project logos to distinguish many GitLab tabs easily. |
ファイルサイズ | 23.77 KB |
インストール数 | 67 |
現在のバージョン | 1.1.2 |
最終更新日 | 2023-11-08 |
公開日 | 2022-02-15 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Noroch |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/SogoKato/gitlab-project-favicon |
対応言語 | 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" ] } |