Jira Favorites

Add Jira issues to favorites and sync among your devices.

What is Jira Favorites?

Jira Favorites is a Chrome extension developed by Git Cat, and its main feature is "Add Jira issues to favorites and sync among your devices.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Jira Favorites Extension CRX File

Download Jira Favorites 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

                        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.                    

Extension Basic Information

Name Jira Favorites Jira Favorites
ID ichkpfkanonmdnheglakiapmjmjhpmme
Official URL https://chromewebstore.google.com/detail/jira-favorites/ichkpfkanonmdnheglakiapmjmjhpmme
Description Add Jira issues to favorites and sync among your devices.
File Size 284 KB
Installation Count 164
Current Version 0.0.8
Last Updated 2024-02-26
Publish Date 2020-05-04
Developer Git Cat
Email [email protected]
Payment Type free
Extension Website https://github.com/TechStark/jira-favorites-extension
Help Page URL https://github.com/TechStark/jira-favorites-extension/issues
Supported Languages 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"
    ]
}