Jira Followers Groups

Allows to create Jira followers groups and easily paste them in comments and description fields

Was ist Jira Followers Groups?

Jira Followers Groups ist eine Chrome-Erweiterung, die von nebakraj entwickelt wurde, und ihr Hauptmerkmal ist "Allows to create Jira followers groups and easily paste them in comments and description fields".

Erweiterungsscreenshots

screenshot
screenshot

Jira Followers Groups-Erweiterungs-CRX-Datei herunterladen

Laden Sie Jira Followers Groups-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        How to use:
1) Open settings page by clicking the app's icon. 
2) Create some user groups.
3) Create Jira ticket or edit an existing one.
4) Put cursor into the editable area (description field or comment body) and type dollar sign - $. Make sure there is whitespace before it or start a new line.
5) The list of suggestions should appear.
6) Click on user group you want to paste or use keyboard arrows.

For unpacked version of the app check
https://github.com/konst8/jira_followers_groups                    

Grundlegende Informationen zur Erweiterung

Name Jira Followers Groups Jira Followers Groups
ID fdojmiggmjfnphbclmpfejfmdfddcdmg
Offizielle URL https://chromewebstore.google.com/detail/jira-followers-groups/fdojmiggmjfnphbclmpfejfmdfddcdmg
Beschreibung Allows to create Jira followers groups and easily paste them in comments and description fields
Dateigröße 114 KB
Installationsanzahl 28
Aktuelle Version 1.0.0.3
Letztes Update 2018-01-25
Veröffentlichungsdatum 2018-01-25
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler nebakraj
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jira Followers Groups",
    "description": "Allows to create Jira followers groups and easily paste them in comments and description fields",
    "version": "1.0.0.3",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Edit Jira Followers Groups"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/browse\/*",
                "*:\/\/*\/secure\/*",
                "*:\/\/*\/jira\/browse\/*",
                "*:\/\/*\/jira\/secure\/*"
            ],
            "js": [
                "libs\/jquery-ui-1.12.1.custom\/external\/jquery\/jquery.js",
                "contentScript.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    }
}