GitHub to JIRA Links
This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.
Wat is GitHub to JIRA Links?
GitHub to JIRA Links is een Chrome-extensie ontwikkeld door https://hacktoolkit.com, en de belangrijkste functie is "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.".
Extensie Screenshots
Download het CRX-bestand van de extensie GitHub to JIRA Links
Download GitHub to JIRA Links-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | GitHub to JIRA Links |
ID | jcioabgeaepidgkoibflheijdcignhcl |
Officiële URL | https://chromewebstore.google.com/detail/github-to-jira-links/jcioabgeaepidgkoibflheijdcignhcl |
Beschrijving | This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks. |
Bestandsgrootte | 9.72 KB |
Aantal Installaties | 71 |
Huidige Versie | 1.2.1 |
Laatst Bijgewerkt | 2023-01-28 |
Publicatiedatum | 2017-06-22 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | https://hacktoolkit.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/hacktoolkit/github-jira-chrome-extension |
Help Pagina-URL | https://github.com/hacktoolkit/github-jira-chrome-extension |
Ondersteunde Talen | 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" } |