Jira Filter +
An extension designed to improve the usability of Jira user interface by adding a new filter by users.
Cos'è Jira Filter +?
Jira Filter + è un'estensione di Chrome sviluppata da 2pmc, e la sua funzione principale è "An extension designed to improve the usability of Jira user interface by adding a new filter by users.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Jira Filter +
Scarica i file di estensione Jira Filter + in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
On a busy jira board, it's quite difficult to see just one users tasks when the team holds a daily scrum meeting.
This extension will improve the usability of Jira's user interface by adding a new "Filter by user" on a Scrum or Kanban board. Informazioni di Base sull'Estensione
| Nome | |
| ID | iojgmhmnbcjbifmppnelcdeobmhdmgdi |
| URL Ufficiale | https://chrome.google.com/webstore/detail/iojgmhmnbcjbifmppnelcdeobmhdmgdi |
| Descrizione | An extension designed to improve the usability of Jira user interface by adding a new filter by users. |
| Dimensione del File | 50.99 KB |
| Conteggio Installazioni | 10 |
| Versione Corrente | 0.0.9 |
| Ultimo Aggiornamento | 2017-11-01 |
| Data di Pubblicazione | 2017-11-01 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | 2pmc |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "0.0.9",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "icons\/icon-16.png",
"128": "icons\/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts\/background.js"
],
"persistent": false
},
"permissions": [
"tabs",
"storage",
"identity",
"identity.email",
"https:\/\/*\/*\/RapidBoard.jspa*",
"https:\/\/*\/RapidBoard.jspa*",
"https:\/\/www.googleapis.com\/"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*\/RapidBoard.jspa*",
"https:\/\/*\/RapidBoard.jspa*"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"browser_action": {
"default_icon": {
"19": "icons\/icon-19.png",
"38": "icons\/icon-38.png"
},
"default_title": "Jira Filter+"
},
"oauth2": {
"client_id": "463600883660-amp8asj9mp7ckkjva5og6uoc46maadug.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/chromewebstore.readonly"
]
}
} | |