Redmine Powerkit
A Redmine powerkit for internal using
Co to jest Redmine Powerkit?
Redmine Powerkit to rozszerzenie Chrome opracowane przez Augustine Wen, a jego główną funkcją jest „A Redmine powerkit for internal using”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Redmine Powerkit
Pobierz pliki rozszerzeń Redmine Powerkit w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
- 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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | chahemppjcbnkgglaamhjmpagaagfpdi |
| Oficjalny URL | https://chromewebstore.google.com/detail/redmine-powerkit/chahemppjcbnkgglaamhjmpagaagfpdi |
| Opis | A Redmine powerkit for internal using |
| Rozmiar pliku | 73.39 KB |
| Liczba instalacji | 45 |
| Aktualna Wersja | 1.0.10 |
| Ostatnia Aktualizacja | 2020-07-29 |
| Data Publikacji | 2020-04-07 |
| Ocena | 5.00/5 Łącznie 4 Oceny |
| Deweloper | Augustine Wen |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/ashramwen/redmine-powerkit |
| Obsługiwane Języki | 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"
]
}
]
} | |