Refined Gitlab

Chrome extension that enhances GitLab

O que é Refined Gitlab?

Refined Gitlab é uma extensão do Chrome desenvolvida por Strajk, e sua principal característica é "Chrome extension that enhances GitLab".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Refined Gitlab

Baixe arquivos de extensão Refined Gitlab 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

                        More info https://github.com/kiwicom/refined-gitlab                    

Informações Básicas da Extensão

Nome Refined Gitlab Refined Gitlab
ID pogpjdbfdfnmlegpbhdmlebognmbamko
URL Oficial https://chromewebstore.google.com/detail/refined-gitlab/pogpjdbfdfnmlegpbhdmlebognmbamko
Descrição Chrome extension that enhances GitLab
Tamanho do Arquivo 304 KB
Contagem de Instalações 70
Versão Atual 19.5.22.2040
Última Atualização 2019-05-22
Data de Publicação 2019-05-22
Desenvolvedor Strajk
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Refined Gitlab",
    "description": "Chrome extension that enhances GitLab",
    "version": "19.5.22.2040",
    "homepage_url": "https:\/\/github.com\/kiwicom\/refined-gitlab",
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Gitlab extension"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "unlimitedStorage",
        "activeTab"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "agent.js"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/gitlab.com\/*",
                "https:\/\/gitlab.skypicker.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}