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 |
公式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 |
Eメール | [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" } |