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
擴展基本資訊
名稱 | Jira RTL |
ID | faijfjkbfhappjcdidleapkibhcfcdlb |
官方網址 | 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" ] } ] } |