GitHub to JIRA Links
This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.
Was ist GitHub to JIRA Links?
GitHub to JIRA Links ist eine Chrome-Erweiterung, die von https://hacktoolkit.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.".
Erweiterungsscreenshots
GitHub to JIRA Links-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub to JIRA Links-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | GitHub to JIRA Links |
ID | jcioabgeaepidgkoibflheijdcignhcl |
Offizielle URL | https://chromewebstore.google.com/detail/github-to-jira-links/jcioabgeaepidgkoibflheijdcignhcl |
Beschreibung | This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks. |
Dateigröße | 9.72 KB |
Installationsanzahl | 71 |
Aktuelle Version | 1.2.1 |
Letztes Update | 2023-01-28 |
Veröffentlichungsdatum | 2017-06-22 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | https://hacktoolkit.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/hacktoolkit/github-jira-chrome-extension |
Hilfeseite URL | https://github.com/hacktoolkit/github-jira-chrome-extension |
Unterstützte Sprachen | 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" } |