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
官方網址 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"
        ]
    }
}