Gitlab Whitespaces remover

Removes whitespaces in individual lines in a Gitlab merge requests

Gitlab Whitespaces remover là gì?

Gitlab Whitespaces remover là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Removes whitespaces in individual lines in a Gitlab merge requests".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gitlab Whitespaces remover

Tải xuống các tệp mở rộng Gitlab Whitespaces remover dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gitlab Whitespaces remover Gitlab Whitespaces remover
ID aecfmhagamhgoojkjhjhjfbblgpdeojj
URL Chính Thức https://chromewebstore.google.com/detail/gitlab-whitespaces-remove/aecfmhagamhgoojkjhjhjfbblgpdeojj
Mô tả Removes whitespaces in individual lines in a Gitlab merge requests
Kích Thước Tệp 125 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2017-12-22
Ngày Phát Hành 2017-12-22
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}