GitLab Details Sidebar

Adding a details view to the sidebar of GitLab boards

O que é GitLab Details Sidebar?

GitLab Details Sidebar é uma extensão do Chrome desenvolvida por Potato, e sua principal característica é "Adding a details view to the sidebar of GitLab boards".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GitLab Details Sidebar

Baixe arquivos de extensão GitLab Details Sidebar 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

                        Chrome extension for GitLab to enhance its functionality. Currently this includes the addition of an "issue details" sidebar that appears when an item within a project board is clicked.

Now updated to work with GitLab v14+

For using the GitLab Details Sidebar on a custom domain for GitLab:
* Navigate to your custom GitLab instance
* Right click on the extension icon
* Select "Enable GitLab Details Sidebar on this domain"
* Accept the permissions dialog
* Click "Ok" to reload the page                    

Informações Básicas da Extensão

Nome GitLab Details Sidebar GitLab Details Sidebar
ID pmgjbjfdmgljhnnhhoccjgpabhgefnki
URL Oficial https://chromewebstore.google.com/detail/gitlab-details-sidebar/pmgjbjfdmgljhnnhhoccjgpabhgefnki
Descrição Adding a details view to the sidebar of GitLab boards
Tamanho do Arquivo 20.98 KB
Contagem de Instalações 731
Versão Atual 0.6.0
Última Atualização 2021-07-20
Data de Publicação 2020-06-12
Classificação 5.00/5 Total de 9 Avaliações
Desenvolvedor Potato
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitLab Details Sidebar",
    "description": "Adding a details view to the sidebar of GitLab boards",
    "version": "0.6.0",
    "manifest_version": 2,
    "icons": {
        "16": "[email protected]",
        "32": "[email protected]",
        "48": "[email protected]"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gitlab.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": false,
            "js": [
                "board-enhancement.js"
            ],
            "css": [
                "board-enhancement.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/gitlab.com\/*",
        "contextMenus",
        "activeTab",
        "webRequest",
        "webRequestBlocking"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{4df68d77-cf6d-4ac4-829d-9ff46fedd628}"
        }
    }
}