JIRA Watcher

Receive notifications about new items on JIRA sites you visit.

Τι είναι το JIRA Watcher;

Το JIRA Watcher είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Andrei Georgescu, και η κύρια λειτουργία του είναι "Receive notifications about new items on JIRA sites you visit.".

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

screenshot

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

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

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

                        JIRA Watcher helps you be more productive.

It gives you desktop notification when you get new items according to your filters.

When you open a website with JIRA instance, the extension begin to scan for new items. You will not receive double notifications from a single JIRA instance. You can however receive from multiple instances.

Benefits:
 • low resources consumption
 • configurable
 • works for multiple instances opened
 • no impact on JIRA server

JIRA® names and logos are trademarks of Atlassian®.                    

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

Όνομα JIRA Watcher JIRA Watcher
ID bapeiigfpooiclmpeiahdcbndekahndl
Επίσημο URL https://chromewebstore.google.com/detail/jira-watcher/bapeiigfpooiclmpeiahdcbndekahndl
Περιγραφή Receive notifications about new items on JIRA sites you visit.
Μέγεθος Αρχείου 13.84 KB
Αριθμός Εγκαταστάσεων 270
Τρέχουσα Έκδοση 0.2.1
Τελευταία Ενημέρωση 2016-08-30
Ημερομηνία Δημοσίευσης 2016-08-30
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Andrei Georgescu
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JIRA Watcher",
    "description": "Receive notifications about new items on JIRA sites you visit.",
    "version": "0.2.1",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "myscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "notifications",
        "tabs",
        "storage",
        ""
    ]
}