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」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

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 Jira daily standup
ID nbgggnfcdciadlbakdhhdnelekpokfmm
公式URL 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
Eメール [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
}