Github Enhanced Project Board

An enhanced UI for Github project boards

O que é Github Enhanced Project Board?

Github Enhanced Project Board é uma extensão do Chrome desenvolvida por Bluehouse Group, e sua principal característica é "An enhanced UI for Github project boards".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Github Enhanced Project Board

Baixe arquivos de extensão Github Enhanced Project Board 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

                        An extension to improve the usability of Github project boards. The columns will become responsive and will not overflow off screen. The add column button is moved up to the controls row. There is a new issue button added to the controls. Clicking on issue title will open issue in new window instead of showing summary view.                    

Informações Básicas da Extensão

Nome Github Enhanced Project Board Github Enhanced Project Board
ID eidmccobchlljnlophmcjgmimneegidp
URL Oficial https://chromewebstore.google.com/detail/github-enhanced-project-b/eidmccobchlljnlophmcjgmimneegidp
Descrição An enhanced UI for Github project boards
Tamanho do Arquivo 82.66 KB
Contagem de Instalações 80
Versão Atual 1.4.1
Última Atualização 2019-04-07
Data de Publicação 2019-04-06
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Bluehouse Group
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Enhanced Project Board",
    "description": "An enhanced UI for Github project boards",
    "version": "1.4.1",
    "page_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.github.com\/*",
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "github.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/github.png"
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "32": "images\/github.png"
    }
}