GitHub to JIRA Links
This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.
Co to jest GitHub to JIRA Links?
GitHub to JIRA Links to rozszerzenie Chrome opracowane przez https://hacktoolkit.com, a jego główną funkcją jest „This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub to JIRA Links
Pobierz pliki rozszerzeń GitHub to JIRA Links 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 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.
Podstawowe informacje o rozszerzeniu
Nazwa | GitHub to JIRA Links |
ID | jcioabgeaepidgkoibflheijdcignhcl |
Oficjalny URL | https://chromewebstore.google.com/detail/github-to-jira-links/jcioabgeaepidgkoibflheijdcignhcl |
Opis | This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks. |
Rozmiar pliku | 9.72 KB |
Liczba instalacji | 71 |
Aktualna Wersja | 1.2.1 |
Ostatnia Aktualizacja | 2023-01-28 |
Data Publikacji | 2017-06-22 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | https://hacktoolkit.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/hacktoolkit/github-jira-chrome-extension |
Adres URL Strony Pomocy | https://github.com/hacktoolkit/github-jira-chrome-extension |
Obsługiwane Języki | 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" } |