Jira Favorites

Add Jira issues to favorites and sync among your devices.

Hvad er Jira Favorites?

Jira Favorites er en Chrome-udvidelse udviklet af Git Cat, og dens hovedfunktion er "Add Jira issues to favorites and sync among your devices.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Jira Favorites-udvidelses-CRX-fil

Download Jira Favorites-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Jira Favorites Jira Favorites
ID ichkpfkanonmdnheglakiapmjmjhpmme
Officiel URL https://chromewebstore.google.com/detail/jira-favorites/ichkpfkanonmdnheglakiapmjmjhpmme
Beskrivelse Add Jira issues to favorites and sync among your devices.
Filstørrelse 284 KB
Antal Installationer 164
Nuværende Version 0.0.8
Senest Opdateret 2024-02-26
Udgivelsesdato 2020-05-04
Udvikler Git Cat
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/TechStark/jira-favorites-extension
Hjælpeside-URL https://github.com/TechStark/jira-favorites-extension/issues
Understøttede Sprog 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"
    ]
}