Jira RTL
Makes text parts of Jira work Right-To-Left
What is Jira RTL?
Jira RTL is a Chrome extension developed by Tech.marketing, and its main feature is "Makes text parts of Jira work Right-To-Left".
Download Jira RTL Extension CRX File
Download Jira RTL 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
This extension let you toggle the state of some key UI components in Jira from LTR to RTL
Extension Basic Information
Name | Jira RTL |
ID | faijfjkbfhappjcdidleapkibhcfcdlb |
Official URL | https://chromewebstore.google.com/detail/jira-rtl/faijfjkbfhappjcdidleapkibhcfcdlb |
Description | Makes text parts of Jira work Right-To-Left |
File Size | 24.33 KB |
Installation Count | 67 |
Current Version | 1.0.1 |
Last Updated | 2017-02-27 |
Publish Date | 2017-02-27 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Tech.marketing |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/tech-marketing/jira-rtl |
Supported Languages | 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" ] } ] } |