bitbucket-companion

a companion for bitbucket

O que é bitbucket-companion?

bitbucket-companion é uma extensão do Chrome desenvolvida por Benjamin Santalucia, e sua principal característica é "a companion for bitbucket".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão bitbucket-companion

Baixe arquivos de extensão bitbucket-companion 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

                        A little companion for atlassian bitbucket server.  

- Shows badge to let you know how many pull requests are waiting your approval.  
- Gives a dashboard view with recent pull requests changes.  
- Tracks comments you may have to read.  
- Automatically delete approval when an approved pull request changes.  
- Notify you when you have pull requests pending for reviews  
- Keep itself up to date with bitbuket server
- Allow to sort in the branches view
  
Note: This require Bitbucket REST API to be enabled.

CHANGELOG:
1.5.+
 - Fix hammering of bitbucket server
 - Allow to disable the automatic remove of approval

1.3.+
 - Handle server error and notify when there are credentials issues
 - Update Icon (red when error, blue otherwise)
 - Show latest notification details inside the icon tooltip

1.2.+
- Allow to show/hide some PR states (like not showing already merged PR)
- Allow to disable notifications                    

Informações Básicas da Extensão

Nome bitbucket-companion bitbucket-companion
ID nnbhbicafgeplheikeiinpiaihcdegap
URL Oficial https://chromewebstore.google.com/detail/bitbucket-companion/nnbhbicafgeplheikeiinpiaihcdegap
Descrição a companion for bitbucket
Tamanho do Arquivo 52.89 KB
Contagem de Instalações 23
Versão Atual 1.5.3
Última Atualização 2018-10-17
Data de Publicação 2018-10-17
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Benjamin Santalucia
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ben8p/chrome-extension-bitbucket-companion
URL da Página de Ajuda https://github.com/ben8p/chrome-extension-bitbucket-companion
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "50",
    "default_locale": "en",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "tabs",
        "notifications",
        "https:\/\/*\/",
        "http:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "js\/events.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "js\/monitor.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "a companion for bitbucket",
    "name": "bitbucket-companion",
    "version": "1.5.3"
}