Jira Black - Dark Mode
Turn your Jira Cloud to Black, a nice looking Dark Theme.
Was ist Jira Black - Dark Mode?
Jira Black - Dark Mode ist eine Chrome-Erweiterung, die von Jb Ronssin entwickelt wurde, und ihr Hauptmerkmal ist "Turn your Jira Cloud to Black, a nice looking Dark Theme.".
Erweiterungsscreenshots
Jira Black - Dark Mode-Erweiterungs-CRX-Datei herunterladen
Laden Sie Jira Black - Dark Mode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Jira Black - Dark Mode |
ID | kceiicckemdanfancjeiddjkedhdicgo |
Offizielle URL | https://chromewebstore.google.com/detail/jira-black-dark-mode/kceiicckemdanfancjeiddjkedhdicgo |
Beschreibung | Turn your Jira Cloud to Black, a nice looking Dark Theme. |
Dateigröße | 5.01 KB |
Installationsanzahl | 6,669 |
Aktuelle Version | 0.3.3 |
Letztes Update | 2022-12-31 |
Veröffentlichungsdatum | 2021-07-25 |
Bewertung | 4.66/5 Insgesamt 56 Bewertungen |
Entwickler | Jb Ronssin |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/jbronssin/jira-black |
Hilfeseite URL | https://github.com/jbronssin/jira-black |
Unterstützte Sprachen | 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 } ] } |