Pipe it Down

Reduce diff noise in GitHub pull requests

Pipe it Down क्या है?

Pipe it Down https://thoughtbot.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reduce diff noise in GitHub pull requests"।

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

screenshot
screenshot

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

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

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

                        Sometimes the size of a pull request can be overwhelming, which has an impact on your ability to conduct a thorough review. Does your hand get tired of scrolling past file diffs you don't care about? Have you ever deleted the file DOM elements using Dev Tools? Do you yearn for a better reviewing experience?

Pipe it Down helps solve this problem by providing a button to collapse files. The files you collapse are saved in local storage, so revisiting the pull request in the future will automatically collapse them for you. Collapsed files can be expanded again, if you change your mind.

Feedback & contributions are welcome at https://github.com/thoughtbot/pipe-it-down.                    

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

नाम Pipe it Down Pipe it Down
ID faljmeoihicdhamcpfmafljlhfoljegm
आधिकारिक URL https://chromewebstore.google.com/detail/pipe-it-down/faljmeoihicdhamcpfmafljlhfoljegm
विवरण Reduce diff noise in GitHub pull requests
फ़ाइल का आकार 19.72 KB
स्थापना संख्या 27
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2017-02-24
प्रकाशन तिथि 2017-02-24
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर https://thoughtbot.com
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/thoughtbot/pipe-it-down
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pipe it Down",
    "description": "Reduce diff noise in GitHub pull requests",
    "version": "0.1.0",
    "author": "Chris Thorn",
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "zepto.min.js",
                "github.js",
                "icons.js",
                "store.js",
                "file.js",
                "client.js"
            ]
        }
    ]
}