Redmine Powerkit
A Redmine powerkit for internal using
什麼是Redmine Powerkit?
Redmine Powerkit是由Augustine Wen開發的Chrome擴展程式,該擴展的主要功能是“A Redmine powerkit for internal using”。
擴展截圖
下載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                     擴展基本資訊
| 名稱 |   |  
| ID | chahemppjcbnkgglaamhjmpagaagfpdi | 
| 官方網址 | 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"
            ]
        }
    ]
}  |  |