EZRB

Improves RB change formatting

EZRBとは何ですか?

EZRBはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Improves RB change formatting」です。

拡張機能のスクリーンショット

screenshot

EZRB拡張機能のCRXファイルをダウンロード

EZRB拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        ReviewBoard does not provide good support when viewing indentation changes. This extension prettifies the diffs by properly ignoring the whitespace changes and provides a more focus view into the file diffs.                    

拡張機能の基本情報

名前 EZRB EZRB
ID pbkejifgaogjnieglkidlnakkhpklhgi
公式URL https://chromewebstore.google.com/detail/ezrb/pbkejifgaogjnieglkidlnakkhpklhgi
説明 Improves RB change formatting
ファイルサイズ 7.01 KB
インストール数 67
現在のバージョン 0.1
最終更新日 2019-03-21
公開日 2019-03-15
評価 5.00/5 合計 4 レビュー
開発者 Unknown
支払い方法 free
拡張機能のウェブサイト https://github.com/guanlun/ezrb
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EZRB",
    "version": "0.1",
    "description": "Improves RB change formatting",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}