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
官方網址 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
電子郵箱 [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"
    ]
}