Jira Link and Search

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

Co to jest Jira Link and Search?

Jira Link and Search to rozszerzenie Chrome opracowane przez Nick Orlando, a jego główną funkcją jest „Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Jira Link and Search

Pobierz pliki rozszerzeń Jira Link and Search w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Jira Link and Search Jira Link and Search
ID jlpbojfbbmodkbjhemkcmkhhlkpijhbi
Oficjalny URL https://chrome.google.com/webstore/detail/jira-link-and-search/jlpbojfbbmodkbjhemkcmkhhlkpijhbi
Opis Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.
Rozmiar pliku 58.29 KB
Liczba instalacji 57
Aktualna Wersja 0.2.4
Ostatnia Aktualizacja 2018-01-28
Data Publikacji 2018-01-28
Ocena 4.33/5 Łącznie 3 Oceny
Deweloper Nick Orlando
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/NickMOrlando/JiraSearchTool
Adres URL Strony Pomocy https://github.com/NickMOrlando/JiraSearchTool/issues
Adres URL Strony Polityki Prywatności https://github.com/NickMOrlando/JiraSearchTool/blob/master/Privacy.md
Obsługiwane Języki 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"
    ]
}