Jira daily standup
Chrome plugin to manage daily standup meeting with Jira board
什麼是Jira daily standup?
Jira daily standup是由Elhay-av開發的Chrome擴展程式,該擴展的主要功能是“Chrome plugin to manage daily standup meeting with Jira board”。
擴展截圖
下載Jira daily standup擴展crx文件
下載Jira daily standup擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Features - Adding next and prev filters to quick filters - Jump to next filter after X(configured) time + Timer * Support new Jira UI
擴展基本資訊
名稱 | Jira daily standup |
ID | nbgggnfcdciadlbakdhhdnelekpokfmm |
官方網址 | https://chromewebstore.google.com/detail/jira-daily-standup/nbgggnfcdciadlbakdhhdnelekpokfmm |
簡介 | Chrome plugin to manage daily standup meeting with Jira board |
檔案大小 | 53.6 KB |
安裝次數 | 73 |
目前版本 | 1.1.7 |
更新時間 | 2023-05-11 |
上架時間 | 2019-01-22 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Elhay-av |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/elhay-av/jira-daily-standup |
說明頁面URL | https://github.com/elhay-av/jira-daily-standup/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Elhay a", "name": "Jira daily standup", "description": "Chrome plugin to manage daily standup meeting with Jira board", "version": "1.1.7", "background": [], "permissions": [ "storage", "https:\/\/*.atlassian.net\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.atlassian.net\/*" ], "js": [ "jquery-latest.min.js", "board.js" ], "css": [ "board.css" ] } ], "web_accessible_resources": [ "img\/play.svg", "img\/pause.svg" ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/buttons.github.io; object-src 'self'", "browser_action": { "default_icon": "img\/logo.png", "default_popup": "index.html" }, "manifest_version": 2 } |