Jira Link and Search

Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.

O que é Jira Link and Search?

Jira Link and Search é uma extensão do Chrome desenvolvida por Nick Orlando, e sua principal característica é "Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Jira Link and Search

Baixe arquivos de extensão Jira Link and Search 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 allows you to select any text in Chrome, and right-click to search for the selected text within an install of Atlassian JIRA.

Recent Changes:
0.2: NEW - This extension will automatically highlight Jira tickets (in the format ABC-123) and turn them directly into hyperlinks!

This extension is Open-Source (MIT License). Source code is available on GitHub.

Please submit any issues (and Pull Requests) via GitHub.                    

Informações Básicas da Extensão

Nome Jira Link and Search Jira Link and Search
ID jlpbojfbbmodkbjhemkcmkhhlkpijhbi
URL Oficial https://chrome.google.com/webstore/detail/jira-link-and-search/jlpbojfbbmodkbjhemkcmkhhlkpijhbi
Descrição Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.
Tamanho do Arquivo 58.29 KB
Contagem de Instalações 57
Versão Atual 0.2.4
Última Atualização 2018-01-28
Data de Publicação 2018-01-28
Classificação 4.33/5 Total de 3 Avaliações
Desenvolvedor Nick Orlando
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/NickMOrlando/JiraSearchTool
URL da Página de Ajuda https://github.com/NickMOrlando/JiraSearchTool/issues
URL da Página de Política de Privacidade https://github.com/NickMOrlando/JiraSearchTool/blob/master/Privacy.md
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jira Link and Search",
    "short_name": "Jira Link-Search",
    "description": "Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.",
    "version": "0.2.4",
    "minimum_chrome_version": "38",
    "permissions": [
        "contextMenus",
        "tabs",
        "https:\/\/www.google-analytics.com\/",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "icons": {
        "16": "assets\/search.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "highlight.js",
                "activate-ga.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "ga.js",
        "background.html"
    ]
}