Jira daily standup

Chrome plugin to manage daily standup meeting with Jira board

What is Jira daily standup?

Jira daily standup is a Chrome extension developed by Elhay-av, and its main feature is "Chrome plugin to manage daily standup meeting with Jira board".

Extension Screenshots

screenshot
screenshot
screenshot

Download Jira daily standup Extension CRX File

Download Jira daily standup extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Features
- Adding next and prev filters to quick filters
- Jump to next filter after X(configured) time + Timer

* Support new Jira UI                    

Extension Basic Information

Name Jira daily standup Jira daily standup
ID nbgggnfcdciadlbakdhhdnelekpokfmm
Official URL https://chromewebstore.google.com/detail/jira-daily-standup/nbgggnfcdciadlbakdhhdnelekpokfmm
Description Chrome plugin to manage daily standup meeting with Jira board
File Size 53.6 KB
Installation Count 73
Current Version 1.1.7
Last Updated 2023-05-11
Publish Date 2019-01-22
Rating 5.00/5 Total 2 Ratings
Developer Elhay-av
Email [email protected]
Payment Type free
Extension Website https://github.com/elhay-av/jira-daily-standup
Help Page URL https://github.com/elhay-av/jira-daily-standup/issues
Supported Languages 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
}