Open JIRA external links in a new tab

Open JIRA issues external links in a new tab or window.

O que é Open JIRA external links in a new tab?

Open JIRA external links in a new tab é uma extensão do Chrome desenvolvida por nemnesic, e sua principal característica é "Open JIRA issues external links in a new tab or window.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Open JIRA external links in a new tab

Baixe arquivos de extensão Open JIRA external links in a new tab 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

                        Open Confluence (JIRA) external links in a new tab or window.
This extension will modify JIRA links to open links in a new tab. More details about the problem and why Confluence does not want to fix this: https://jira.atlassian.com/browse/CONF-11194                    

Informações Básicas da Extensão

Nome Open JIRA external links in a new tab Open JIRA external links in a new tab
ID lpagenghjojnilgfenbacdhhbmmnafpk
URL Oficial https://chromewebstore.google.com/detail/open-jira-external-links/lpagenghjojnilgfenbacdhhbmmnafpk
Descrição Open JIRA issues external links in a new tab or window.
Tamanho do Arquivo 69.48 KB
Contagem de Instalações 121
Versão Atual 2.0
Última Atualização 2020-11-14
Data de Publicação 2014-12-16
Classificação 2.50/5 Total de 8 Avaliações
Desenvolvedor nemnesic
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/nemnesic/jira-external-links
URL da Página de Ajuda https://github.com/nemnesic/jira-external-links
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open JIRA external links in a new tab",
    "version": "2.0",
    "description": "Open JIRA issues external links in a new tab or window.",
    "browser_action": {
        "name": "Open JIRA issues external links in a new tab or window.",
        "default_icon": "jira-icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-1.11.1.min.js",
                "jira_links.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}