Jira Favorites

Add Jira issues to favorites and sync among your devices.

Jira Favoritesとは何ですか?

Jira FavoritesはGit Catによって開発されたChromeの拡張機能で、その主な機能は「Add Jira issues to favorites and sync among your devices.」です。

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

screenshot
screenshot
screenshot
screenshot
screenshot

Jira Favorites拡張機能のCRXファイルをダウンロード

Jira Favorites拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        After installing this extension, there will be a star button in your Jira item page (see screenshots).
Click the star button to favorite or unfavorite it. You can also use shortcut "Alt + Shift + f" to star/unstar.
See the favorites list by clicking the star icon from browser's extension list.                    

拡張機能の基本情報

名前 Jira Favorites Jira Favorites
ID ichkpfkanonmdnheglakiapmjmjhpmme
公式URL https://chromewebstore.google.com/detail/jira-favorites/ichkpfkanonmdnheglakiapmjmjhpmme
説明 Add Jira issues to favorites and sync among your devices.
ファイルサイズ 284 KB
インストール数 164
現在のバージョン 0.0.8
最終更新日 2024-02-26
公開日 2020-05-04
開発者 Git Cat
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/TechStark/jira-favorites-extension
ヘルプページのURL https://github.com/TechStark/jira-favorites-extension/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira Favorites",
    "version": "0.0.8",
    "manifest_version": 3,
    "description": "Add Jira issues to favorites and sync among your devices.",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "16": "icons\/icon-16.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png"
        }
    },
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/browse\/*"
            ],
            "match_about_blank": true,
            "all_frames": true,
            "run_at": "document_idle",
            "js": [
                "content-script.bundle.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}