Jira Black - Dark Mode

Turn your Jira Cloud to Black, a nice looking Dark Theme.

Jira Black - Dark Mode란 무엇입니까?

Jira Black - Dark Mode은(는) Jb Ronssin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turn your Jira Cloud to Black, a nice looking Dark Theme."입니다.

확장 프로그램 스크린샷

screenshot

Jira Black - Dark Mode 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Jira Black is a small extension to transform your JIRA in a nice dark Theme.
No fancy stuff, no weird permissions, no tracker : it does what's it's supposed to and that's it!

⚠️ Important Notice:
1 - It's only working on Jira Cloud and not on self hosted Jira (links like https://*.atlassian.net/ ).
2 - It's not working on Confluence.
3 - Thanks to the community who corrected a few glitches and bugs: you guys are awesome!

ℹ️ Last update:
Excluded Confluence as the CSS is inverted.                    

확장 프로그램 기본 정보

이름 Jira Black - Dark Mode Jira Black - Dark Mode
ID kceiicckemdanfancjeiddjkedhdicgo
공식 URL https://chromewebstore.google.com/detail/jira-black-dark-mode/kceiicckemdanfancjeiddjkedhdicgo
설명 Turn your Jira Cloud to Black, a nice looking Dark Theme.
파일 크기 5.01 KB
설치 횟수 6,669
현재 버전 0.3.3
최근 업데이트 2022-12-31
출시 날짜 2021-07-25
평점 4.66/5 총 56 개의 평점
개발자 Jb Ronssin
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jbronssin/jira-black
도움말 페이지 URL https://github.com/jbronssin/jira-black
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Jira Black - Dark Mode",
    "version": "0.3.3",
    "description": "Turn your Jira Cloud to Black, a nice looking Dark Theme.",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*",
                "https:\/\/*.herocoders.com\/issue\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.atlassian.net\/wiki\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "style.css"
            ],
            "all_frames": true
        }
    ]
}