Jira RTL
Makes text parts of Jira work Right-To-Left
O que é Jira RTL?
Jira RTL é uma extensão do Chrome desenvolvida por Tech.marketing, e sua principal característica é "Makes text parts of Jira work Right-To-Left".
Baixar o arquivo CRX da Extensão Jira RTL
Baixe arquivos de extensão Jira RTL no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This extension let you toggle the state of some key UI components in Jira from LTR to RTL
Informações Básicas da Extensão
Nome | Jira RTL |
ID | faijfjkbfhappjcdidleapkibhcfcdlb |
URL Oficial | https://chromewebstore.google.com/detail/jira-rtl/faijfjkbfhappjcdidleapkibhcfcdlb |
Descrição | Makes text parts of Jira work Right-To-Left |
Tamanho do Arquivo | 24.33 KB |
Contagem de Instalações | 67 |
Versão Atual | 1.0.1 |
Última Atualização | 2017-02-27 |
Data de Publicação | 2017-02-27 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Tech.marketing |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/tech-marketing/jira-rtl |
Idiomas Suportados | 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" ] } ] } |