Redmine Notification

Redmine notification tools

Redmine Notification क्या है?

Redmine Notification zhixin wen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redmine notification tools"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Redmine Notification एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        # 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"
    ]
}