Jira RTL

Makes text parts of Jira work Right-To-Left

Cos'è Jira RTL?

Jira RTL è un'estensione di Chrome sviluppata da Tech.marketing, e la sua funzione principale è "Makes text parts of Jira work Right-To-Left".

Scarica il file CRX dell'estensione Jira RTL

Scarica i file di estensione Jira RTL in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension let you toggle the state of some key UI components in Jira from LTR to RTL                    

Informazioni di Base sull'Estensione

Nome Jira RTL Jira RTL
ID faijfjkbfhappjcdidleapkibhcfcdlb
URL Ufficiale https://chromewebstore.google.com/detail/jira-rtl/faijfjkbfhappjcdidleapkibhcfcdlb
Descrizione Makes text parts of Jira work Right-To-Left
Dimensione del File 24.33 KB
Conteggio Installazioni 67
Versione Corrente 1.0.1
Ultimo Aggiornamento 2017-02-27
Data di Pubblicazione 2017-02-27
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Tech.marketing
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/tech-marketing/jira-rtl
Lingue Supportate 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"
            ]
        }
    ]
}