JIRA ShortCut - BKTB

Copy to clip board Jira issue task-sub task title and Confluence issue title

Qu'est-ce que JIRA ShortCut - BKTB ?

JIRA ShortCut - BKTB est une extension Chrome développée par vinanti.thakur, et sa fonction principale est "Copy to clip board Jira issue task-sub task title and Confluence issue title".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension JIRA ShortCut - BKTB

Téléchargez les fichiers d'extension JIRA ShortCut - BKTB au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension includes additional features to Jira Shortcut originally by mshytikov.


Additional features are as follows:
1.	Able to copy Confluence page title.

2.	Able to copy parent task info (if exists) in Jira ticket.

3.	When pasted, the information would be hyperlink enabled text (if text editor supports hyperlink)


*** Setup ***
1. Right click extension icon -> options

2. Click 'Add rule' -> Click ‘Jira Default’ for Jira -> ‘Save’

3. Click ‘Add rule’ -> Click ‘Confluence Default’ for Confluence -> ‘Save’

4. (Optional) Click 'Add rule' -> Custom Rules (If user wants to customize the rules) -> ‘Save’ 

5. Open Jira/Confluence page, user should see the icon enabled in the address bar!


Enjoy!!                    

Informations de Base sur l'Extension

Nom JIRA ShortCut - BKTB JIRA ShortCut - BKTB
ID ajagbdcjimfigmdpbbbpnlkpamhnhpee
URL Officiel https://chrome.google.com/webstore/detail/ajagbdcjimfigmdpbbbpnlkpamhnhpee
Description Copy to clip board Jira issue task-sub task title and Confluence issue title
Taille du Fichier 9.88 KB
Nombre d'Installations 87
Version Actuelle 5.0.3
Dernière Mise à Jour 2016-11-15
Date de Publication 2016-11-15
Évaluation 4.73/5 Total 11 Évaluations
Développeur vinanti.thakur
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JIRA ShortCut - BKTB",
    "version": "5.0.3",
    "manifest_version": 2,
    "description": "Copy to clip board Jira issue task-sub task title and Confluence issue title",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/config.js",
            "js\/bg.js"
        ]
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "background",
        "clipboardWrite"
    ],
    "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"
}