Github Whitespace Hider

Automatically hides whitespace changes in GitHub pull requests for a cleaner code review experience.

Github Whitespace Hider क्या है?

Github Whitespace Hider joe.lloyd.22.24 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically hides whitespace changes in GitHub pull requests for a cleaner code review experience."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Github Whitespace Hider एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Improve your code reviewing experience on GitHub with the Github Whitespace Hider. This handy Chrome extension automatically hides whitespace changes in pull requests, streamlining your review process by focusing on the changes that matter.

In the hustle of coding, it's common to inadvertently add or remove whitespaces, which can clutter the pull request diff view. These changes, although innocent in intent, can make the diff harder to read and obscure the actual code changes. That's where Github Whitespace Hider comes in.

With just a one-time installation, Github Whitespace Hider gets to work on every GitHub pull request page you visit. It automatically modifies the URL to include the 'w=1' parameter, effectively hiding whitespace changes. This allows you to review code alterations more efficiently, without the need to manually toggle the 'Hide whitespace changes' option every time.

Install Github Whitespace Hider today and enjoy a cleaner, more focused code review experience on GitHub!

Open source: https://github.com/joe-lloyd/github-white-space-off-chrome-extention                    

एक्सटेंशन की मूल जानकारी

नाम Github Whitespace Hider Github Whitespace Hider
ID fapgonkhjoinbbcachbpcjhheikgbjem
आधिकारिक URL https://chromewebstore.google.com/detail/github-whitespace-hider/fapgonkhjoinbbcachbpcjhheikgbjem
विवरण Automatically hides whitespace changes in GitHub pull requests for a cleaner code review experience.
फ़ाइल का आकार 3.52 KB
स्थापना संख्या 53
वर्तमान संस्करण 1.0
अंतिम अपडेट 2023-06-02
प्रकाशन तिथि 2023-06-02
रेटिंग 4.00/5 कुल 2 रेटिंग्स
डेवलपर joe.lloyd.22.24
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Github Whitespace Hider",
    "version": "1.0",
    "description": "Automatically hides whitespace changes in GitHub pull requests for a cleaner code review experience.",
    "host_permissions": [
        "https:\/\/github.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "whitespace_hider.js"
            ]
        }
    ]
}