GitHub to JIRA Links

This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.

O que é GitHub to JIRA Links?

GitHub to JIRA Links é uma extensão do Chrome desenvolvida por https://hacktoolkit.com, e sua principal característica é "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GitHub to JIRA Links

Baixe arquivos de extensão GitHub to JIRA Links 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 detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.

Works on both GitHub Enterprise Cloud as well as public GitHub.com.                    

Informações Básicas da Extensão

Nome GitHub to JIRA Links GitHub to JIRA Links
ID jcioabgeaepidgkoibflheijdcignhcl
URL Oficial https://chromewebstore.google.com/detail/github-to-jira-links/jcioabgeaepidgkoibflheijdcignhcl
Descrição This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.
Tamanho do Arquivo 9.72 KB
Contagem de Instalações 71
Versão Atual 1.2.1
Última Atualização 2023-01-28
Data de Publicação 2017-06-22
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor https://hacktoolkit.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/hacktoolkit/github-jira-chrome-extension
URL da Página de Ajuda https://github.com/hacktoolkit/github-jira-chrome-extension
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitHub to JIRA Links",
    "version": "1.2.1",
    "description": "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.",
    "icons": {
        "16": "img\/64jira.png",
        "64": "img\/64jira.png",
        "128": "img\/64jira.png"
    },
    "action": {
        "default_icon": "img\/64jira.png",
        "default_popup": "src\/popup.html",
        "default_title": "GitHub to JIRA Links"
    },
    "author": "Jonathan Tsai (@jontsai)",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "src\/js\/github_jira.js"
            ]
        }
    ],
    "options_ui": {
        "page": "src\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "short_name": "GitHub JIRA"
}