Special Redmine customizer

1. Add custom links to redmine main menu (you can do it in extension settings) 2. Expand full project issues tree from Gantt chart

Special Redmine customizer란 무엇입니까?

Special Redmine customizer은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "1. Add custom links to redmine main menu (you can do it in extension settings) 2. Expand full project issues tree from Gantt chart"입니다.

확장 프로그램 스크린샷

screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        1. Add custom links to redmine main menu (you can do it in extension settings)
2. Expand full project issues tree from Gantt chart                    

확장 프로그램 기본 정보

이름 Special Redmine customizer Special Redmine customizer
ID ggpobgeelefmkhdonhgkjhmgmdoiadej
공식 URL https://chromewebstore.google.com/detail/special-redmine-customize/ggpobgeelefmkhdonhgkjhmgmdoiadej
설명 1. Add custom links to redmine main menu (you can do it in extension settings) 2. Expand full project issues tree from Gantt chart
파일 크기 48.73 KB
설치 횟수 24
현재 버전 1.13
최근 업데이트 2014-04-01
출시 날짜 2014-04-01
평점 5.00/5 총 1 개의 평점
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/p36101/special_redmine_customizer_ext
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Special Redmine customizer",
    "version": "1.13",
    "icons": {
        "16": "raccoon_comp16.png",
        "48": "raccoon_comp48.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Special Redmine customizer",
        "default_icon": "raccoon_comp48.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/rm.hsmedia.ru\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "\/injected.js"
    ],
    "options_page": "options.html"
}