Dark Theme for Jira

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

Dark Theme for Jira क्या है?

Dark Theme for Jira lucapalminteri02 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allow user to switch between light and dark theme on the Jira website"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Dark Theme for Jira एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Dark Theme for Jira Dark Theme for Jira
ID ckedjfpbcmnjleckmfjogkchahffaomg
आधिकारिक URL https://chromewebstore.google.com/detail/dark-theme-for-jira/ckedjfpbcmnjleckmfjogkchahffaomg
विवरण Allow user to switch between light and dark theme on the Jira website
फ़ाइल का आकार 302 KB
स्थापना संख्या 31
वर्तमान संस्करण 1.4
अंतिम अपडेट 2023-03-10
प्रकाशन तिथि 2022-11-14
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर lucapalminteri02
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/LucaPalminteri/dark-theme-jira
सहायता पृष्ठ URL https://github.com/LucaPalminteri/dark-theme-jira
समर्थित भाषाएँ 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"
}