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
擴展基本資訊
名稱 | Dark Theme for Jira |
ID | ckedjfpbcmnjleckmfjogkchahffaomg |
官方網址 | 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" } |