Redmine Powerkit

A Redmine powerkit for internal using

Co je Redmine Powerkit?

Redmine Powerkit je rozšíření Chrome vyvinuté Augustine Wen, a jeho hlavní funkcí je „A Redmine powerkit for internal using“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Redmine Powerkit

Stáhněte si soubory rozšíření Redmine Powerkit ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        - 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                    

Základní Informace o Rozšíření

Název Redmine Powerkit Redmine Powerkit
ID chahemppjcbnkgglaamhjmpagaagfpdi
Oficiální URL https://chromewebstore.google.com/detail/redmine-powerkit/chahemppjcbnkgglaamhjmpagaagfpdi
Popis A Redmine powerkit for internal using
Velikost souboru 73.39 KB
Počet instalací 45
Aktuální Verze 1.0.10
Poslední Aktualizace 2020-07-29
Datum Vydání 2020-04-07
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář Augustine Wen
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/ashramwen/redmine-powerkit
Podporované Jazyky 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"
            ]
        }
    ]
}