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文件

下載Stash PR Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
    }
}