Jira RTL
Makes text parts of Jira work Right-To-Left
Wat is Jira RTL?
Jira RTL is een Chrome-extensie ontwikkeld door Tech.marketing, en de belangrijkste functie is "Makes text parts of Jira work Right-To-Left".
Download het CRX-bestand van de extensie Jira RTL
Download Jira RTL-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension let you toggle the state of some key UI components in Jira from LTR to RTL
Basisinformatie over de Extensie
Naam | Jira RTL |
ID | faijfjkbfhappjcdidleapkibhcfcdlb |
Officiële URL | https://chromewebstore.google.com/detail/jira-rtl/faijfjkbfhappjcdidleapkibhcfcdlb |
Beschrijving | Makes text parts of Jira work Right-To-Left |
Bestandsgrootte | 24.33 KB |
Aantal Installaties | 67 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2017-02-27 |
Publicatiedatum | 2017-02-27 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Tech.marketing |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://github.com/tech-marketing/jira-rtl |
Ondersteunde Talen | 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" ] } ] } |