Redmine Notification

Redmine notification tools

Redmine Notificationとは何ですか?

Redmine Notificationはzhixin wenによって開発されたChromeの拡張機能で、その主な機能は「Redmine notification tools」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Redmine Notification拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}