Jira Favorites
Add Jira issues to favorites and sync among your devices.
Jira Favoritesคืออะไร?
Jira Favorites เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Git Cat และคุณลักษณะหลักของมันคือ "Add Jira issues to favorites and sync among your devices."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jira Favorites
ดาวน์โหลดไฟล์ส่วนขยาย Jira Favorites ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Jira Favorites |
ID | ichkpfkanonmdnheglakiapmjmjhpmme |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/jira-favorites/ichkpfkanonmdnheglakiapmjmjhpmme |
คำอธิบาย | Add Jira issues to favorites and sync among your devices. |
ขนาดไฟล์ | 284 KB |
จำนวนการติดตั้ง | 164 |
เวอร์ชันปัจจุบัน | 0.0.8 |
อัปเดตครั้งล่าสุด | 2024-02-26 |
วันที่เผยแพร่ | 2020-05-04 |
ผู้พัฒนา | Git Cat |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/TechStark/jira-favorites-extension |
URL หน้าช่วยเหลือ | https://github.com/TechStark/jira-favorites-extension/issues |
ภาษาที่รองรับ | 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" ] } |