Links for GitHub & Jira

Chrome extension that adds links to JIRA issues from GitHub issues and PRs

O que é Links for GitHub & Jira?

Links for GitHub & Jira é uma extensão do Chrome desenvolvida por https://samlanning.com, e sua principal característica é "Chrome extension that adds links to JIRA issues from GitHub issues and PRs".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Links for GitHub & Jira

Baixe arquivos de extensão Links for GitHub & Jira 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

                        Chrome extension that adds links to JIRA issues from GitHub issues and PRs

When you view lists of issues or pull requests on GitHub (either GitHub.com, or GitHub enterprise), the extension will use the API of the JIRA installations of your choosing to see if there are any JIRA Issues that mention each GitHub Issue or PR. It will then insert these issues, along with their current status, right into the GitHub UI alongside the labels.

* No JIRA plugins necessary
* Authentication is done simply by acting as the user you are logged in as on JIRA.
* Minimal permissions required, only needs access to websites you configure.
* Specify exactly which GitHub repositories you want connected to which JIRA installations.

This project is open source, and you can find it here: https://github.com/samlanning/github-jira-links                    

Informações Básicas da Extensão

Nome Links for GitHub & Jira Links for GitHub & Jira
ID mcedjinjmcpfknajacebeokngmnlphik
URL Oficial https://chromewebstore.google.com/detail/links-for-github-jira/mcedjinjmcpfknajacebeokngmnlphik
Descrição Chrome extension that adds links to JIRA issues from GitHub issues and PRs
Tamanho do Arquivo 311 KB
Contagem de Instalações 21
Versão Atual 0.0.4
Última Atualização 2019-06-12
Data de Publicação 2019-06-11
Desenvolvedor https://samlanning.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/samlanning/github-jira-links
URL da Página de Ajuda https://github.com/samlanning/github-jira-links/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Links for GitHub & Jira",
    "description": "Chrome extension that adds links to JIRA issues from GitHub issues and PRs",
    "version": "0.0.4",
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "https:\/\/*\/*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Configure Links for GitHub & Jira"
    },
    "options_page": "options.html"
}