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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows to create Jira followers groups and easily paste them in comments and description fields"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Jira Followers Groups 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
    }
}