JIRA ShortCut

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

JIRA ShortCut क्या है?

JIRA ShortCut mshytikov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy to clip board jira issue as 'CMD-999: Description'"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में JIRA ShortCut एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
}