GitHub to JIRA Links
This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.
Cos'è GitHub to JIRA Links?
GitHub to JIRA Links è un'estensione di Chrome sviluppata da https://hacktoolkit.com, e la sua funzione principale è "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub to JIRA Links
Scarica i file di estensione GitHub to JIRA Links in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | GitHub to JIRA Links |
ID | jcioabgeaepidgkoibflheijdcignhcl |
URL Ufficiale | https://chromewebstore.google.com/detail/github-to-jira-links/jcioabgeaepidgkoibflheijdcignhcl |
Descrizione | This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks. |
Dimensione del File | 9.72 KB |
Conteggio Installazioni | 71 |
Versione Corrente | 1.2.1 |
Ultimo Aggiornamento | 2023-01-28 |
Data di Pubblicazione | 2017-06-22 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | https://hacktoolkit.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/hacktoolkit/github-jira-chrome-extension |
URL della Pagina di Aiuto | https://github.com/hacktoolkit/github-jira-chrome-extension |
Lingue Supportate | 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" } |