GitHub Jira Integration

This extension shows contents of linked tasks from Jira in Github

Τι είναι το GitHub Jira Integration;

Το GitHub Jira Integration είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον DukeSoft, και η κύρια λειτουργία του είναι "This extension shows contents of linked tasks from Jira in Github".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης GitHub Jira Integration

Λήψη αρχείων επέκτασης GitHub Jira Integration σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Manipulates GitHub webpages to contain information fetched from your Jira instance.

It requires PR's to contain a link to the name of a ticket (in the TICKET-321 format). It will then try to fetch data from there and put it in the PR page, appending information and making ticket links clickable.

INSTALLATION GUIDE:
- Install the plugin.
- In the right top, click the icon, and open up the "options" screen
- Fill in your settings (such as company.atlassian.net) and press save
- PR's on github.com should now show direct links to Jira tickets and information.

CHANGELOG:

v1.2.3
- Fix title selection in Github page

v1.2.2
- Assignee is now optional, doesn't show when unassigned
- Page jumps around a bit less when loading ticket information


v1.2.1
- Fixed order of reporter / assigned names

v1.2.0
- Added option to disable automatic title generation
- Added option to disable automatic template insertion
- Fixed incorrect title loading when opening an MR
- Updated jQuery to 3.3.1
- Improved look of inserted information in PR overview
- Improved option page
- Improved API calls - no longer using jQuery's `ajax`, but Chrome's `fetch` in a background view.
- Changed template language to be English by default
- Removed the extra tab generated, as it wasn't really used

v1.1.1
- Fixed compatibilty with new GitHub layout (#15, #18)
- Added ticket status in PR (#17)
- All links to tickets in commits are automatically parsed and a link will be placed (#16)

v1.1.0
- Added possibility to filter acceptance criteria from the ticket and parse it into the PR using the template.

v1.0.4
- Removed console logs
- Fixed Uncaught TypeError when no ticket number was found (#3)

v1.0.3

- Automatically full a new PR description with a preset template, and will try to update the PR title with a proper one based on the tickets (the ticket number should be in your branch name)
- Fixed a button loading bug

More updates will follow; such as:

- Information in PR overview
- More information in the overview / Jira page



Privacy:
https://github.com/RobQuistNL/chrome-github-jira/blob/master/PRIVACY.md                    

Βασικές Πληροφορίες Επέκτασης

Όνομα GitHub Jira Integration GitHub Jira Integration
ID faenbbkpfnklhncjianlfllkfekgghih
Επίσημο URL https://chromewebstore.google.com/detail/github-jira-integration/faenbbkpfnklhncjianlfllkfekgghih
Περιγραφή This extension shows contents of linked tasks from Jira in Github
Μέγεθος Αρχείου 94.69 KB
Αριθμός Εγκαταστάσεων 653
Τρέχουσα Έκδοση 1.2.3
Τελευταία Ενημέρωση 2023-01-19
Ημερομηνία Δημοσίευσης 2019-05-07
Αξιολόγηση 4.40/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής DukeSoft
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/RobQuistNL/chrome-github-jira
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/RobQuistNL/chrome-github-jira/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/RobQuistNL/chrome-github-jira/blob/master/PRIVACY.md
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Jira Integration",
    "version": "1.2.3",
    "description": "This extension shows contents of linked tasks from Jira in Github",
    "author": "Rob Quist \/ DukeSoft",
    "homepage_url": "https:\/\/github.com\/RobQuistNL\/chrome-github-jira",
    "options_ui": {
        "page": "src\/options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "256": "images\/icon256.png",
        "512": "images\/icon512.png"
    },
    "web_accessible_resources": [
        "images\/jira.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*.atlassian.net\/",
        "https:\/\/*.jira.com\/",
        "http:\/\/*.atlassian.net\/",
        "http:\/\/*.jira.com\/"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    }
}