Jira Favorites

Add Jira issues to favorites and sync among your devices.

Wat is Jira Favorites?

Jira Favorites is een Chrome-extensie ontwikkeld door Git Cat, en de belangrijkste functie is "Add Jira issues to favorites and sync among your devices.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Jira Favorites

Download Jira Favorites-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Jira Favorites Jira Favorites
ID ichkpfkanonmdnheglakiapmjmjhpmme
Officiële URL https://chromewebstore.google.com/detail/jira-favorites/ichkpfkanonmdnheglakiapmjmjhpmme
Beschrijving Add Jira issues to favorites and sync among your devices.
Bestandsgrootte 284 KB
Aantal Installaties 164
Huidige Versie 0.0.8
Laatst Bijgewerkt 2024-02-26
Publicatiedatum 2020-05-04
Ontwikkelaar Git Cat
E-mail onesjtuer@gmail.com
Betalingswijze free
Extensiewebsite https://github.com/TechStark/jira-favorites-extension
Help Pagina-URL https://github.com/TechStark/jira-favorites-extension/issues
Ondersteunde Talen 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"
    ]
}