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开发的Chrome扩展程序,该扩展的主要功能是“Allow user to switch between light and dark theme on the Jira website”。
扩展截图
下载Dark Theme for Jira扩展crx文件
下载Dark Theme for Jira扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple button is added in the right-top of the page that toggles the theme to dark/light 扩展基本信息
| 名称 | |
| 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"
} | |