Jira HotLinker

Jira HotLinker, quick access to Jira metadata when hovering over ticket numbers!

Τι είναι το Jira HotLinker;

Το Jira HotLinker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://dhwillem.com, και η κύρια λειτουργία του είναι "Jira HotLinker, quick access to Jira metadata when hovering over ticket numbers!".

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

screenshot

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

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

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

                        This extension will show a tooltip when hovering over a jira ticket number on github or a ticket link.

The tooltip is enabled on github.com by default, you can add new domains by clicking on the extension icon or in the option menu.

New ! : 

- Copy past the ticket title to clipboard thanks to @ https://github.com/kaspars-ozols
- Github enterprise support for pull requests !
- Security updates

Features:

- Title and Link to Jira
- Related pull requests
- Descriptions
- Attachments 
- Issue type / status / priority
- Comment count and plain text comments
- Configure domains where the plugin is active by clicking on the extension icon.
- Pin a ticket on the screen by dragging the title

Privacy Features:
- Does not store any user data what so ever
- Only requires access to the websites where you want to use the plugin.
- Does not ask for your jira password or user name !

Should also work on google docs all tough that is currently experimental.                    

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

Όνομα Jira HotLinker Jira HotLinker
ID lbifpcpomdegljfpfhgfcjdabbeallhk
Επίσημο URL https://chromewebstore.google.com/detail/jira-hotlinker/lbifpcpomdegljfpfhgfcjdabbeallhk
Περιγραφή Jira HotLinker, quick access to Jira metadata when hovering over ticket numbers!
Μέγεθος Αρχείου 674 KB
Αριθμός Εγκαταστάσεων 1,952
Τρέχουσα Έκδοση 1.8.0
Τελευταία Ενημέρωση 2022-02-22
Ημερομηνία Δημοσίευσης 2019-08-14
Αξιολόγηση 4.76/5 Συνολικά 17 Αξιολογήσεις
Προγραμματιστής https://dhwillem.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/helmus/Jira-Hot-Linker
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/helmus/Jira-Hot-Linker/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira HotLinker",
    "description": "Jira HotLinker, quick access to Jira metadata when hovering over ticket numbers!",
    "version": "1.8.0",
    "manifest_version": 2,
    "icons": {
        "128": "resources\/jiralink128.png"
    },
    "browser_action": {
        "default_title": "Click to always search for tickets on this page"
    },
    "minimum_chrome_version": "60",
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "resources\/*"
    ],
    "optional_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "https:\/\/github.com\/",
        "storage"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    }
}