JIRA ShortCut

Copy to clip board jira issue as 'CMD-999: Description'

JIRA ShortCutคืออะไร?

JIRA ShortCut เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mshytikov และคุณลักษณะหลักของมันคือ "Copy to clip board jira issue as 'CMD-999: Description'"

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

screenshot
screenshot

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

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

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

                        Just open your jira ticket and you will see an icon in the address bar,
just click on it and text will be copied to your clip board,
Want keyboard shortcut? Then use on Windows: Ctrl+J on Mac: Cmd+J,
or choose your own in chrome://extensions/

*** Setup ***
Before you start you need to add at least one rule in the options:

1. Open options page, chrome-extension://kjofpimpbjninggehnclcgkgniacejha/options.html
2. Click 'Add rule'
3. Click 'Save'
4. Open 'https://issues.apache.org/jira/browse/HADOOP-3629'
5. You should see the icon in the address bar.

You also can use this extension with other sites, but you need to configure it.  In options  you can specify:

1. when to activate the extension - "url pattern" field.
2. what should be copied from the page title - 'tittle patter' and 'out pattern' fields.

Example - Github pull requests:
Example page with url https://github.com/rails/rails/pull/10676
and title "Add test to counter cache test.rb by tkhr · Pull Request #10676 · rails/rails"

Configuration for this page:
"url pattern":   github.com.*/pull/
'title pattern":  (.*)(· Pull Request #)(\d+).*
"out pattern":  #$3 $1

Text will be copied to clip board: 
#10676 Add test to counter cache test.rb by tkhr                    

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

ชื่อ JIRA ShortCut JIRA ShortCut
ID kjofpimpbjninggehnclcgkgniacejha
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/jira-shortcut/kjofpimpbjninggehnclcgkgniacejha
คำอธิบาย Copy to clip board jira issue as 'CMD-999: Description'
ขนาดไฟล์ 9.78 KB
จำนวนการติดตั้ง 4,129
เวอร์ชันปัจจุบัน 6.2.2
อัปเดตครั้งล่าสุด 2022-02-18
วันที่เผยแพร่ 2019-06-05
คะแนน 4.57/5 รวมทั้งหมด 35 คะแนน
ผู้พัฒนา mshytikov
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mshytikov/jira-shortcut
URL หน้าช่วยเหลือ https://github.com/mshytikov/jira-shortcut/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JIRA ShortCut",
    "version": "6.2.2",
    "manifest_version": 2,
    "description": "Copy to clip board jira issue as 'CMD-999: Description'",
    "background": {
        "scripts": [
            "js\/config.js",
            "js\/bg.js"
        ]
    },
    "permissions": [
        "tabs",
        "background",
        "clipboardWrite",
        "storage"
    ],
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Copy",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+J"
            }
        }
    },
    "options_page": "options.html"
}