Jira Favorites
Add Jira issues to favorites and sync among your devices.
Was ist Jira Favorites?
Jira Favorites ist eine Chrome-Erweiterung, die von Git Cat entwickelt wurde, und ihr Hauptmerkmal ist "Add Jira issues to favorites and sync among your devices.".
Erweiterungsscreenshots
Jira Favorites-Erweiterungs-CRX-Datei herunterladen
Laden Sie Jira Favorites-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ichkpfkanonmdnheglakiapmjmjhpmme |
| Offizielle URL | https://chromewebstore.google.com/detail/jira-favorites/ichkpfkanonmdnheglakiapmjmjhpmme |
| Beschreibung | Add Jira issues to favorites and sync among your devices. |
| Dateigröße | 284 KB |
| Installationsanzahl | 164 |
| Aktuelle Version | 0.0.8 |
| Letztes Update | 2024-02-26 |
| Veröffentlichungsdatum | 2020-05-04 |
| Entwickler | Git Cat |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/TechStark/jira-favorites-extension |
| Hilfeseite URL | https://github.com/TechStark/jira-favorites-extension/issues |
| Unterstützte Sprachen | 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"
]
} | |