Refined Gitlab

Chrome extension that enhances GitLab

什么是Refined Gitlab?

Refined Gitlab是由Strajk开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension that enhances GitLab”。

扩展截图

screenshot

下载Refined Gitlab扩展crx文件

下载Refined Gitlab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Refined Gitlab Refined Gitlab
ID pogpjdbfdfnmlegpbhdmlebognmbamko
官方URL https://chromewebstore.google.com/detail/refined-gitlab/pogpjdbfdfnmlegpbhdmlebognmbamko
简介 Chrome extension that enhances GitLab
文件大小 304 KB
安装次数 70
当前版本 19.5.22.2040
更新时间 2019-05-22
上架时间 2019-05-22
开发者 Strajk
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
        ]
    }
}