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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension let you toggle the state of some key UI components in Jira from LTR to RTL
확장 프로그램 기본 정보
이름 | Jira 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" ] } ] } |