Jira Followers Groups

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

Jira Followers Groups là gì?

Jira Followers Groups là một tiện ích mở rộng Chrome được phát triển bởi nebakraj, và tính năng chính của nó là "Allows to create Jira followers groups and easily paste them in comments and description fields".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Jira Followers Groups

Tải xuống các tệp mở rộng Jira Followers Groups dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Jira Followers Groups Jira Followers Groups
ID fdojmiggmjfnphbclmpfejfmdfddcdmg
URL Chính Thức https://chromewebstore.google.com/detail/jira-followers-groups/fdojmiggmjfnphbclmpfejfmdfddcdmg
Mô tả Allows to create Jira followers groups and easily paste them in comments and description fields
Kích Thước Tệp 114 KB
Số Lần Cài Đặt 28
Phiên Bản Hiện Tại 1.0.0.3
Cập Nhật Lần Cuối 2018-01-25
Ngày Phát Hành 2018-01-25
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển nebakraj
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}