Redmine Notification

Redmine notification tools

Τι είναι το Redmine Notification;

Το Redmine Notification είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον zhixin wen, και η κύρια λειτουργία του είναι "Redmine notification tools".

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

screenshot
screenshot
screenshot

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

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

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

                        # Redmine Notification

Redmine notification tools for chrome extension.

## Features

* See the problem and the discuss directly through the plugin.
* Real time updates and automatically prompted to the problem.
* Support for multiple redmine, centralized management issues.
* Support for custom issue roles (developer and tester).
* issue status and issue number.
* Support offline viewing problems.

2009-2020 www.scutech.com

mail to: [email protected]                    

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

Όνομα Redmine Notification Redmine Notification
ID cenhhgabijhpobnfnmkigobcefkmhjbj
Επίσημο URL https://chromewebstore.google.com/detail/redmine-notification/cenhhgabijhpobnfnmkigobcefkmhjbj
Περιγραφή Redmine notification tools
Μέγεθος Αρχείου 647 KB
Αριθμός Εγκαταστάσεων 3,109
Τρέχουσα Έκδοση 2.4.2
Τελευταία Ενημέρωση 2019-03-08
Ημερομηνία Δημοσίευσης 2019-03-08
Αξιολόγηση 4.40/5 Συνολικά 30 Αξιολογήσεις
Προγραμματιστής zhixin wen
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/wenzhixin/scutech-redmine
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/wenzhixin/scutech-redmine/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "name": "Redmine Notification",
    "description": "Redmine notification tools",
    "version": "2.4.2",
    "manifest_version": 2,
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "notifications"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "assets\/font-awesome\/css\/font-awesome.min.css",
                "css\/redmine.css"
            ],
            "js": [
                "assets\/jquery.min.js",
                "assets\/jsonlint.js",
                "js\/redmine.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/jquery.min.js",
        "assets\/ZeroClipboard.js",
        "assets\/ZeroClipboard.swf",
        "js\/copy.js",
        "assets\/font-awesome\/fonts\/fontawesome-webfont.eot",
        "assets\/font-awesome\/fonts\/fontawesome-webfont.woff",
        "assets\/font-awesome\/fonts\/fontawesome-webfont.ttf"
    ]
}