Redmine Notification

Redmine notification tools

Redmine Notification란 무엇입니까?

Redmine Notification은(는) zhixin wen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redmine notification tools"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Redmine Notification 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}