Dark Theme for Jira
Allow user to switch between light and dark theme on the Jira website
Cos'è Dark Theme for Jira?
Dark Theme for Jira è un'estensione di Chrome sviluppata da lucapalminteri02, e la sua funzione principale è "Allow user to switch between light and dark theme on the Jira website".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Dark Theme for Jira
Scarica i file di estensione Dark Theme for Jira 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
A simple button is added in the right-top of the page that toggles the theme to dark/light
Informazioni di Base sull'Estensione
Nome | Dark Theme for Jira |
ID | ckedjfpbcmnjleckmfjogkchahffaomg |
URL Ufficiale | https://chromewebstore.google.com/detail/dark-theme-for-jira/ckedjfpbcmnjleckmfjogkchahffaomg |
Descrizione | Allow user to switch between light and dark theme on the Jira website |
Dimensione del File | 302 KB |
Conteggio Installazioni | 31 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2023-03-10 |
Data di Pubblicazione | 2022-11-14 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | lucapalminteri02 |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/LucaPalminteri/dark-theme-jira |
URL della Pagina di Aiuto | https://github.com/LucaPalminteri/dark-theme-jira |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Dark Theme for Jira", "description": "Allow user to switch between light and dark theme on the Jira website", "version": "1.4", "icons": { "16": ".\/images\/dark16.png", "48": ".\/images\/dark48.png", "128": ".\/images\/dark128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.atlassian.net\/jira\/*", "https:\/\/*.atlassian.net\/issues\/*", "https:\/\/*.atlassian.net\/browse\/*" ], "js": [ "index.js" ] } ], "author": "Luca Palminteri" } |