Stash PR Helper

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

Stash PR Helper là gì?

Stash PR Helper 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à "Helps Stash users to fill in Pull Requests' descriptions and reviewers".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Stash PR Helper

Tải xuống các tệp mở rộng Stash PR Helper 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

                        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                    

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

Tên Stash PR Helper Stash PR Helper
ID egdpkgklhlhmckklngifpnjfcmgahpnk
URL Chính Thức https://chromewebstore.google.com/detail/stash-pr-helper/egdpkgklhlhmckklngifpnjfcmgahpnk
Mô tả Helps Stash users to fill in Pull Requests' descriptions and reviewers
Kích Thước Tệp 112 KB
Số Lần Cài Đặt 102
Phiên Bản Hiện Tại 1.0.0.8
Cập Nhật Lần Cuối 2018-02-20
Ngày Phát Hành 2018-02-19
Đánh Giá 3.67/5 Tổng số 3 Đá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": "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
    }
}