Jira RTL
Makes text parts of Jira work Right-To-Left
Qu'est-ce que Jira RTL ?
Jira RTL est une extension Chrome développée par Tech.marketing, et sa fonction principale est "Makes text parts of Jira work Right-To-Left".
Télécharger le fichier CRX de l'extension Jira RTL
Téléchargez les fichiers d'extension Jira RTL 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
This extension let you toggle the state of some key UI components in Jira from LTR to RTL
Informations de Base sur l'Extension
Nom | Jira RTL |
ID | faijfjkbfhappjcdidleapkibhcfcdlb |
URL Officiel | https://chromewebstore.google.com/detail/jira-rtl/faijfjkbfhappjcdidleapkibhcfcdlb |
Description | Makes text parts of Jira work Right-To-Left |
Taille du Fichier | 24.33 KB |
Nombre d'Installations | 67 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2017-02-27 |
Date de Publication | 2017-02-27 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Tech.marketing |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/tech-marketing/jira-rtl |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jira RTL", "description": "Makes text parts of Jira work Right-To-Left", "manifest_version": 2, "version": "1.0.1", "background": { "scripts": [ "script.js" ] }, "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "browser_action": { "name": "Enable RTL On JIRA", "default_icon": { "19": "images\/16.png", "38": "images\/48.png" } }, "permissions": [ "webNavigation", "tabs", "https:\/\/*.atlassian.net\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.atlassian.net\/*", "https:\/\/*.atlassian.net\/" ], "css": [ "style.css" ], "js": [ "inject.js" ] } ] } |