Dark Theme for Jira

Allow user to switch between light and dark theme on the Jira website

Qu'est-ce que Dark Theme for Jira ?

Dark Theme for Jira est une extension Chrome développée par lucapalminteri02, et sa fonction principale est "Allow user to switch between light and dark theme on the Jira website".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Dark Theme for Jira

Téléchargez les fichiers d'extension Dark Theme for Jira au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        A simple button is added in the right-top of the page that toggles the theme to dark/light                    

Informations de Base sur l'Extension

Nom Dark Theme for Jira Dark Theme for Jira
ID ckedjfpbcmnjleckmfjogkchahffaomg
URL Officiel https://chromewebstore.google.com/detail/dark-theme-for-jira/ckedjfpbcmnjleckmfjogkchahffaomg
Description Allow user to switch between light and dark theme on the Jira website
Taille du Fichier 302 KB
Nombre d'Installations 31
Version Actuelle 1.4
Dernière Mise à Jour 2023-03-10
Date de Publication 2022-11-14
Évaluation 3.00/5 Total 2 Évaluations
Développeur lucapalminteri02
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/LucaPalminteri/dark-theme-jira
URL de la Page d'Aide https://github.com/LucaPalminteri/dark-theme-jira
Langues Prises en Charge 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"
}