GitLab-Project-Favicon
Dynamically change GitLab favicons to project logos to distinguish many GitLab tabs easily.
Was ist GitLab-Project-Favicon?
GitLab-Project-Favicon ist eine Chrome-Erweiterung, die von Noroch entwickelt wurde, und ihr Hauptmerkmal ist "Dynamically change GitLab favicons to project logos to distinguish many GitLab tabs easily.".
Erweiterungsscreenshots
GitLab-Project-Favicon-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitLab-Project-Favicon-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bakcfpilmcemknpdfdakmfnfikedmodh |
| Offizielle URL | https://chromewebstore.google.com/detail/gitlab-project-favicon/bakcfpilmcemknpdfdakmfnfikedmodh |
| Beschreibung | Dynamically change GitLab favicons to project logos to distinguish many GitLab tabs easily. |
| Dateigröße | 23.77 KB |
| Installationsanzahl | 67 |
| Aktuelle Version | 1.1.2 |
| Letztes Update | 2023-11-08 |
| Veröffentlichungsdatum | 2022-02-15 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Noroch |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/SogoKato/gitlab-project-favicon |
| Unterstützte Sprachen | 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"
]
} | |