Gitlab Whitespaces remover

Removes whitespaces in individual lines in a Gitlab merge requests

什么是Gitlab Whitespaces remover?

Gitlab Whitespaces remover是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Removes whitespaces in individual lines in a Gitlab merge requests”。

扩展截图

screenshot

下载Gitlab Whitespaces remover扩展crx文件

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

扩展使用说明

                        Removes whitespaces in words in a merge request. Works only in Side By Side mode.
Source code - github.com/abhinavsingi/gitlab-remove-whitespaces

Click on the icon after a merge request is loaded in Changes tab                    

扩展基本信息

名称 Gitlab Whitespaces remover Gitlab Whitespaces remover
ID aecfmhagamhgoojkjhjhjfbblgpdeojj
官方URL https://chromewebstore.google.com/detail/gitlab-whitespaces-remove/aecfmhagamhgoojkjhjhjfbblgpdeojj
简介 Removes whitespaces in individual lines in a Gitlab merge requests
文件大小 125 KB
安装次数 18
当前版本 0.0.1
更新时间 2017-12-22
上架时间 2017-12-22
评分 5.00/5 共1次评分
开发者 Unknown
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gitlab Whitespaces remover",
    "version": "0.0.1",
    "description": "Removes whitespaces in individual lines in a Gitlab merge requests",
    "browser_action": {
        "icon": "icon.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}