Stash PR Helper

Helps Stash users to fill in Pull Requests' descriptions and reviewers

Stash PR Helper란 무엇입니까?

Stash PR Helper은(는) nebakraj에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps Stash users to fill in Pull Requests' descriptions and reviewers"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Stash PR Helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Stash PR Helper is a productivity tool which allows Stash users to create Pull Requests (PRs) easier.
For now the app provides 2 options: PR description templates and PR reviewers groups.

How to use.
1) Go to the settings page and add some items.
2) When creating a pull request put a cursor into the appropriate field (Description or Reviewers)
3) Push any keyboard arrow (up, down, left, right) to open a pop-up with a list of suggestions.
4) Select some suggestion and get the field auto-filled.

For unpacked version check:
https://github.com/konst8/stash_pr_helper/tree/master                    

확장 프로그램 기본 정보

이름 Stash PR Helper Stash PR Helper
ID egdpkgklhlhmckklngifpnjfcmgahpnk
공식 URL https://chromewebstore.google.com/detail/stash-pr-helper/egdpkgklhlhmckklngifpnjfcmgahpnk
설명 Helps Stash users to fill in Pull Requests' descriptions and reviewers
파일 크기 112 KB
설치 횟수 102
현재 버전 1.0.0.8
최근 업데이트 2018-02-20
출시 날짜 2018-02-19
평점 3.67/5 총 3 개의 평점
개발자 nebakraj
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stash PR Helper",
    "description": "Helps Stash users to fill in Pull Requests' descriptions and reviewers",
    "version": "1.0.0.8",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Fill in PR's reviewers"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*pull-requests*",
                "https:\/\/*\/*compare\/commits?*",
                "https:\/\/*\/*compare\/diff?*"
            ],
            "js": [
                "libs\/jquery-ui-1.12.1.custom\/external\/jquery\/jquery.js",
                "contentScript.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "contentEject.js"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    }
}