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文件

下载Special Redmine customizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装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                    

扩展基本信息

名称 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"
}