Redmine Notification

Redmine notification tools

Redmine Notification là gì?

Redmine Notification là một tiện ích mở rộng Chrome được phát triển bởi zhixin wen, và tính năng chính của nó là "Redmine notification tools".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Redmine Notification

Tải xuống các tệp mở rộng Redmine Notification dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Redmine Notification Redmine Notification
ID cenhhgabijhpobnfnmkigobcefkmhjbj
URL Chính Thức https://chromewebstore.google.com/detail/redmine-notification/cenhhgabijhpobnfnmkigobcefkmhjbj
Mô tả Redmine notification tools
Kích Thước Tệp 647 KB
Số Lần Cài Đặt 3,109
Phiên Bản Hiện Tại 2.4.2
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 4.40/5 Tổng số 30 Đánh Giá
Nhà Phát Triển zhixin wen
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/wenzhixin/scutech-redmine
URL Trang Trợ Giúp https://github.com/wenzhixin/scutech-redmine/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}