Jira Favorites
Add Jira issues to favorites and sync among your devices.
Cos'è Jira Favorites?
Jira Favorites è un'estensione di Chrome sviluppata da Git Cat, e la sua funzione principale è "Add Jira issues to favorites and sync among your devices.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Jira Favorites
Scarica i file di estensione Jira Favorites in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Jira Favorites |
ID | ichkpfkanonmdnheglakiapmjmjhpmme |
URL Ufficiale | https://chromewebstore.google.com/detail/jira-favorites/ichkpfkanonmdnheglakiapmjmjhpmme |
Descrizione | Add Jira issues to favorites and sync among your devices. |
Dimensione del File | 284 KB |
Conteggio Installazioni | 164 |
Versione Corrente | 0.0.8 |
Ultimo Aggiornamento | 2024-02-26 |
Data di Pubblicazione | 2020-05-04 |
Sviluppatore | Git Cat |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/TechStark/jira-favorites-extension |
URL della Pagina di Aiuto | https://github.com/TechStark/jira-favorites-extension/issues |
Lingue Supportate | 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" ] } |