GitHub to JIRA Links

This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.

Qu'est-ce que GitHub to JIRA Links ?

GitHub to JIRA Links est une extension Chrome développée par https://hacktoolkit.com, et sa fonction principale est "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension GitHub to JIRA Links

Téléchargez les fichiers d'extension GitHub to JIRA Links au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom GitHub to JIRA Links GitHub to JIRA Links
ID jcioabgeaepidgkoibflheijdcignhcl
URL Officiel https://chromewebstore.google.com/detail/github-to-jira-links/jcioabgeaepidgkoibflheijdcignhcl
Description This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.
Taille du Fichier 9.72 KB
Nombre d'Installations 71
Version Actuelle 1.2.1
Dernière Mise à Jour 2023-01-28
Date de Publication 2017-06-22
Évaluation 5.00/5 Total 3 Évaluations
Développeur https://hacktoolkit.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/hacktoolkit/github-jira-chrome-extension
URL de la Page d'Aide https://github.com/hacktoolkit/github-jira-chrome-extension
Langues Prises en Charge 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"
}