Redmine Powerkit

A Redmine powerkit for internal using

What is Redmine Powerkit?

Redmine Powerkit is a Chrome extension developed by Augustine Wen, and its main feature is "A Redmine powerkit for internal using".

Extension Screenshots

screenshot

Download Redmine Powerkit Extension CRX File

Download Redmine Powerkit extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        - 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                    

Extension Basic Information

Name Redmine Powerkit Redmine Powerkit
ID chahemppjcbnkgglaamhjmpagaagfpdi
Official URL https://chromewebstore.google.com/detail/redmine-powerkit/chahemppjcbnkgglaamhjmpagaagfpdi
Description A Redmine powerkit for internal using
File Size 73.39 KB
Installation Count 45
Current Version 1.0.10
Last Updated 2020-07-29
Publish Date 2020-04-07
Rating 5.00/5 Total 4 Ratings
Developer Augustine Wen
Email [email protected]
Payment Type free
Extension Website https://github.com/ashramwen/redmine-powerkit
Supported Languages 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"
            ]
        }
    ]
}