Jira HotLinker

Jira HotLinker, quick access to Jira metadata when hovering over ticket numbers!

Jira HotLinkerคืออะไร?

Jira HotLinker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://dhwillem.com และคุณลักษณะหลักของมันคือ "Jira HotLinker, quick access to Jira metadata when hovering over ticket numbers!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jira HotLinker

ดาวน์โหลดไฟล์ส่วนขยาย Jira HotLinker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension will show a tooltip when hovering over a jira ticket number on github or a ticket link.

The tooltip is enabled on github.com by default, you can add new domains by clicking on the extension icon or in the option menu.

New ! : 

- Copy past the ticket title to clipboard thanks to @ https://github.com/kaspars-ozols
- Github enterprise support for pull requests !
- Security updates

Features:

- Title and Link to Jira
- Related pull requests
- Descriptions
- Attachments 
- Issue type / status / priority
- Comment count and plain text comments
- Configure domains where the plugin is active by clicking on the extension icon.
- Pin a ticket on the screen by dragging the title

Privacy Features:
- Does not store any user data what so ever
- Only requires access to the websites where you want to use the plugin.
- Does not ask for your jira password or user name !

Should also work on google docs all tough that is currently experimental.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Jira HotLinker Jira HotLinker
ID lbifpcpomdegljfpfhgfcjdabbeallhk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/jira-hotlinker/lbifpcpomdegljfpfhgfcjdabbeallhk
คำอธิบาย Jira HotLinker, quick access to Jira metadata when hovering over ticket numbers!
ขนาดไฟล์ 674 KB
จำนวนการติดตั้ง 1,952
เวอร์ชันปัจจุบัน 1.8.0
อัปเดตครั้งล่าสุด 2022-02-22
วันที่เผยแพร่ 2019-08-14
คะแนน 4.76/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา https://dhwillem.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/helmus/Jira-Hot-Linker
URL หน้าช่วยเหลือ https://github.com/helmus/Jira-Hot-Linker/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira HotLinker",
    "description": "Jira HotLinker, quick access to Jira metadata when hovering over ticket numbers!",
    "version": "1.8.0",
    "manifest_version": 2,
    "icons": {
        "128": "resources\/jiralink128.png"
    },
    "browser_action": {
        "default_title": "Click to always search for tickets on this page"
    },
    "minimum_chrome_version": "60",
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "resources\/*"
    ],
    "optional_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "https:\/\/github.com\/",
        "storage"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    }
}