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 |
| 官方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
}
]
} | |