Jira Followers Groups

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

Jira Followers Groups क्या है?

Jira Followers Groups nebakraj द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows to create Jira followers groups and easily paste them in comments and description fields"।

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

screenshot
screenshot

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

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

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

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Jira Followers Groups Jira Followers Groups
ID fdojmiggmjfnphbclmpfejfmdfddcdmg
आधिकारिक URL https://chromewebstore.google.com/detail/jira-followers-groups/fdojmiggmjfnphbclmpfejfmdfddcdmg
विवरण Allows to create Jira followers groups and easily paste them in comments and description fields
फ़ाइल का आकार 114 KB
स्थापना संख्या 28
वर्तमान संस्करण 1.0.0.3
अंतिम अपडेट 2018-01-25
प्रकाशन तिथि 2018-01-25
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर nebakraj
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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
    }
}