EZRB

Improves RB change formatting

What is EZRB?

EZRB is a Chrome extension developed by Unknown, and its main feature is "Improves RB change formatting".

Extension Screenshots

screenshot

Download EZRB Extension CRX File

Download EZRB extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name EZRB EZRB
ID pbkejifgaogjnieglkidlnakkhpklhgi
Official URL https://chromewebstore.google.com/detail/ezrb/pbkejifgaogjnieglkidlnakkhpklhgi
Description Improves RB change formatting
File Size 7.01 KB
Installation Count 67
Current Version 0.1
Last Updated 2019-03-21
Publish Date 2019-03-15
Rating 5.00/5 Total 4 Ratings
Developer Unknown
Payment Type free
Extension Website https://github.com/guanlun/ezrb
Supported Languages 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"
            ]
        }
    ]
}