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 |
| Eメール | [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"
]
}
]
} | |