Redmine Powerkit

A Redmine powerkit for internal using

什么是Redmine Powerkit?

Redmine Powerkit是由Augustine Wen开发的Chrome扩展程序,该扩展的主要功能是“A Redmine powerkit for internal using”。

扩展截图

screenshot

下载Redmine Powerkit扩展crx文件

下载Redmine Powerkit扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        - Add [iNL] support
- Add colored Requirements support
- Add issues fullscreen support
- Add new domain support
- Add the default assignee
- Support card changing
- Add OPT Support
- Add project highlighting                    

扩展基本信息

名称 Redmine Powerkit Redmine Powerkit
ID chahemppjcbnkgglaamhjmpagaagfpdi
官方URL https://chromewebstore.google.com/detail/redmine-powerkit/chahemppjcbnkgglaamhjmpagaagfpdi
简介 A Redmine powerkit for internal using
文件大小 73.39 KB
安装次数 45
当前版本 1.0.10
更新时间 2020-07-29
上架时间 2020-04-07
评分 5.00/5 共4次评分
开发者 Augustine Wen
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/ashramwen/redmine-powerkit
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.10",
    "manifest_version": 2,
    "name": "Redmine Powerkit",
    "description": "A Redmine powerkit for internal using",
    "author": "Augustine Wen",
    "permissions": [
        "*:\/\/redmine.yjtech.tw\/*",
        "webRequest",
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/redmine.yjtech.tw\/*"
            ],
            "include_globs": [
                "*\/agile\/board?*",
                "*\/issues?*"
            ],
            "css": [
                "css\/styles.css"
            ],
            "js": [
                "js\/jquery-3.4.0.slim.min.js",
                "js\/fullscreen.js",
                "js\/contentscript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/redmine.yjtech.tw\/*"
            ],
            "include_globs": [
                "*\/issues\/new?*"
            ],
            "js": [
                "js\/jquery-3.4.0.slim.min.js",
                "js\/newissue.js"
            ]
        }
    ]
}