Jira RTL
Makes text parts of Jira work Right-To-Left
什么是Jira RTL?
Jira RTL是由Tech.marketing开发的Chrome扩展程序,该扩展的主要功能是“Makes text parts of Jira work Right-To-Left”。
下载Jira RTL扩展crx文件
下载Jira RTL扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension let you toggle the state of some key UI components in Jira from LTR to RTL 扩展基本信息
| 名称 | |
| ID | faijfjkbfhappjcdidleapkibhcfcdlb |
| 官方URL | https://chromewebstore.google.com/detail/jira-rtl/faijfjkbfhappjcdidleapkibhcfcdlb |
| 简介 | Makes text parts of Jira work Right-To-Left |
| 文件大小 | 24.33 KB |
| 安装次数 | 67 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2017-02-27 |
| 上架时间 | 2017-02-27 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Tech.marketing |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://github.com/tech-marketing/jira-rtl |
| 支持的语言 | 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"
]
}
]
} | |