Stash PR Helper

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

O que é Stash PR Helper?

Stash PR Helper é uma extensão do Chrome desenvolvida por nebakraj, e sua principal característica é "Helps Stash users to fill in Pull Requests' descriptions and reviewers".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Stash PR Helper

Baixe arquivos de extensão Stash PR Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Stash PR Helper Stash PR Helper
ID egdpkgklhlhmckklngifpnjfcmgahpnk
URL Oficial https://chromewebstore.google.com/detail/stash-pr-helper/egdpkgklhlhmckklngifpnjfcmgahpnk
Descrição Helps Stash users to fill in Pull Requests' descriptions and reviewers
Tamanho do Arquivo 112 KB
Contagem de Instalações 102
Versão Atual 1.0.0.8
Última Atualização 2018-02-20
Data de Publicação 2018-02-19
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor nebakraj
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
    }
}