Jira Favorites
Add Jira issues to favorites and sync among your devices.
Co je Jira Favorites?
Jira Favorites je rozšíření Chrome vyvinuté Git Cat, a jeho hlavní funkcí je „Add Jira issues to favorites and sync among your devices.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Jira Favorites
Stáhněte si soubory rozšíření Jira Favorites ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Jira Favorites |
ID | ichkpfkanonmdnheglakiapmjmjhpmme |
Oficiální URL | https://chromewebstore.google.com/detail/jira-favorites/ichkpfkanonmdnheglakiapmjmjhpmme |
Popis | Add Jira issues to favorites and sync among your devices. |
Velikost souboru | 284 KB |
Počet instalací | 164 |
Aktuální Verze | 0.0.8 |
Poslední Aktualizace | 2024-02-26 |
Datum Vydání | 2020-05-04 |
Vývojář | Git Cat |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/TechStark/jira-favorites-extension |
URL Stránky Nápovědy | https://github.com/TechStark/jira-favorites-extension/issues |
Podporované Jazyky | 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" ] } |