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
电子邮箱 [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"
    ]
}