GitLab-Project-Favicon

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

Cos'è GitLab-Project-Favicon?

GitLab-Project-Favicon è un'estensione di Chrome sviluppata da Noroch, e la sua funzione principale è "Dynamically change GitLab favicons to project logos to distinguish many GitLab tabs easily.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione GitLab-Project-Favicon

Scarica i file di estensione GitLab-Project-Favicon in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome GitLab-Project-Favicon GitLab-Project-Favicon
ID bakcfpilmcemknpdfdakmfnfikedmodh
URL Ufficiale https://chromewebstore.google.com/detail/gitlab-project-favicon/bakcfpilmcemknpdfdakmfnfikedmodh
Descrizione Dynamically change GitLab favicons to project logos to distinguish many GitLab tabs easily.
Dimensione del File 23.77 KB
Conteggio Installazioni 67
Versione Corrente 1.1.2
Ultimo Aggiornamento 2023-11-08
Data di Pubblicazione 2022-02-15
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Noroch
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/SogoKato/gitlab-project-favicon
Lingue Supportate 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"
    ]
}