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.”。
擴展截圖
下載Jira Black - Dark Mode擴展crx文件
下載Jira Black - Dark Mode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | kceiicckemdanfancjeiddjkedhdicgo |
| 官方網址 | 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
}
]
} | |