Instant Preview for Jira
Speeds up Jira ticket (issue) load time by using a cache.
Instant Preview for Jira란 무엇입니까?
Instant Preview for Jira은(는) Avi Shwartz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Speeds up Jira ticket (issue) load time by using a cache."입니다.
확장 프로그램 스크린샷
Instant Preview for Jira 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Are Jira ticket pages loading slowly and taking a long time for you to see the ticket (issue)? If this is the case, the extension will help you display a pop-up with a basic ticket info while the page is loading. It also includes comments, but not attachments, images, or custom fields. You can modify the following settings: ✅ The popup can be hidden when the full page loads / when you mouse over it. ✅ You can choose whether to show the popup only if there's a faster cache available, or to show it anyway. ✅ Choose whether you want to see the description or comments first. ✅ Also, you can choose whether to show older or newer comments first. ✅ Cache size can be set. ✅. Clear cache. ✅. Choose a color theme (including dark mode) 🚀 🚀 🚀 🚀 🚀 🚀 Disclaimer: this extension isn't related to Atlassian. The ticket information is stored in your browser cache, and it doesn't get deleted automatically when you log out - you've got to delete it manually from the extension options/ browser history.
확장 프로그램 기본 정보
이름 | Instant Preview for Jira |
ID | fccahgodgkkkcfbepejkkalmhbdmjmdb |
공식 URL | https://chromewebstore.google.com/detail/instant-preview-for-jira/fccahgodgkkkcfbepejkkalmhbdmjmdb |
설명 | Speeds up Jira ticket (issue) load time by using a cache. |
파일 크기 | 27.86 KB |
설치 횟수 | 19 |
현재 버전 | 1.1 |
최근 업데이트 | 2023-10-06 |
출시 날짜 | 2021-12-26 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Avi Shwartz |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Instant Preview for Jira", "description": "Speeds up Jira ticket (issue) load time by using a cache.", "version": "1.1", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*.atlassian.net\/*" ], "js": [ "dist\/main.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "activeTab", "scripting" ], "action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "\/images\/jira-logo.png", "32": "\/images\/jira-logo.png", "48": "\/images\/jira-logo.png", "128": "\/images\/jira-logo.png" } }, "icons": { "16": "\/images\/jira-logo.png", "32": "\/images\/jira-logo.png", "48": "\/images\/jira-logo.png", "128": "\/images\/jira-logo.png" } } |