Jira Thumbnail

This extension adds thumbnails to tasks in your Jira Agile/Kanban board.

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

Το Jira Thumbnail είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Vladislav Dotsenko, και η κύρια λειτουργία του είναι "This extension adds thumbnails to tasks in your Jira Agile/Kanban board.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Set up this extension if you want to add thumbnails to task cards in your Jira Agile/Kanban board. Thumbnails will be picked from task's attachment according to extension settings, then built in your Agile/Kanban board page locally.

Instruction:
1) Set up extension.
2) Click on the extension icon. (It will open the options page)
3) On the options page enter your Jira hostname into "Jira URL" field. For example "jira.yourcompany.com", "jira.atlassian.com".
4) Press "Save" button.
5) Go to your Jira Kanban board and you will see that tasks with image attachment inside have thumbnails now.

Additional info:
If your Jira server uses HTTP protocol, add "http://" to your URL. (e.g. "http://jira.yourcompany.com"). In case your Jira server uses any port like ":8080" enter it after URL. (e.g. "jira.yourcompany.com:8080").

Change log:
v.1.0.1
- Fixed width of users avatars.
v.1.0.2
- Added possibility to specify "http://" or "https://" protocols and use custom port in "Jira URL" field.
- Fixed thumbnail position in Jira 8.12.                    

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

Όνομα Jira Thumbnail Jira Thumbnail
ID noagphikabbpdaljickdeildfjggcnoc
Επίσημο URL https://chromewebstore.google.com/detail/jira-thumbnail/noagphikabbpdaljickdeildfjggcnoc
Περιγραφή This extension adds thumbnails to tasks in your Jira Agile/Kanban board.
Μέγεθος Αρχείου 26.44 KB
Αριθμός Εγκαταστάσεων 478
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2020-09-28
Ημερομηνία Δημοσίευσης 2020-02-17
Αξιολόγηση 4.33/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Vladislav Dotsenko
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jira Thumbnail",
    "version": "1.0.2",
    "description": "This extension adds thumbnails to tasks in your Jira Agile\/Kanban board.",
    "author": "Vladislav Dotsenko | [email protected]",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "img_preview_style.css"
    ],
    "browser_action": {
        "default_title": "Click to open options tab.",
        "default_icon": "icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}