Dark Theme for Jira
Allow user to switch between light and dark theme on the Jira website
What is Dark Theme for Jira?
Dark Theme for Jira is a Chrome extension developed by lucapalminteri02, and its main feature is "Allow user to switch between light and dark theme on the Jira website".
Extension Screenshots
Download Dark Theme for Jira Extension CRX File
Download Dark Theme for Jira extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A simple button is added in the right-top of the page that toggles the theme to dark/light
Extension Basic Information
Name | Dark Theme for Jira |
ID | ckedjfpbcmnjleckmfjogkchahffaomg |
Official URL | https://chromewebstore.google.com/detail/dark-theme-for-jira/ckedjfpbcmnjleckmfjogkchahffaomg |
Description | Allow user to switch between light and dark theme on the Jira website |
File Size | 302 KB |
Installation Count | 31 |
Current Version | 1.4 |
Last Updated | 2023-03-10 |
Publish Date | 2022-11-14 |
Rating | 3.00/5 Total 2 Ratings |
Developer | lucapalminteri02 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/LucaPalminteri/dark-theme-jira |
Help Page URL | https://github.com/LucaPalminteri/dark-theme-jira |
Supported Languages | 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" } |