Refined Gitlab

Chrome extension that enhances GitLab

What is Refined Gitlab?

Refined Gitlab is a Chrome extension developed by Strajk, and its main feature is "Chrome extension that enhances GitLab".

Extension Screenshots

screenshot

Download Refined Gitlab Extension CRX File

Download Refined Gitlab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Refined Gitlab Refined Gitlab
ID pogpjdbfdfnmlegpbhdmlebognmbamko
Official URL https://chromewebstore.google.com/detail/refined-gitlab/pogpjdbfdfnmlegpbhdmlebognmbamko
Description Chrome extension that enhances GitLab
File Size 304 KB
Installation Count 70
Current Version 19.5.22.2040
Last Updated 2019-05-22
Publish Date 2019-05-22
Developer Strajk
Email [email protected]
Payment Type free
Supported Languages 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"
        ]
    }
}