Jira Black - Dark Mode
Turn your Jira Cloud to Black, a nice looking Dark Theme.
Qu'est-ce que Jira Black - Dark Mode ?
Jira Black - Dark Mode est une extension Chrome développée par Jb Ronssin, et sa fonction principale est "Turn your Jira Cloud to Black, a nice looking Dark Theme.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Jira Black - Dark Mode
Téléchargez les fichiers d'extension Jira Black - Dark Mode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Jira Black - Dark Mode |
ID | kceiicckemdanfancjeiddjkedhdicgo |
URL Officiel | https://chromewebstore.google.com/detail/jira-black-dark-mode/kceiicckemdanfancjeiddjkedhdicgo |
Description | Turn your Jira Cloud to Black, a nice looking Dark Theme. |
Taille du Fichier | 5.01 KB |
Nombre d'Installations | 6,669 |
Version Actuelle | 0.3.3 |
Dernière Mise à Jour | 2022-12-31 |
Date de Publication | 2021-07-25 |
Évaluation | 4.66/5 Total 56 Évaluations |
Développeur | Jb Ronssin |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jbronssin/jira-black |
URL de la Page d'Aide | https://github.com/jbronssin/jira-black |
Langues Prises en Charge | 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 } ] } |