Pipe it Down

Reduce diff noise in GitHub pull requests

Pipe it Downคืออะไร?

Pipe it Down เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://thoughtbot.com และคุณลักษณะหลักของมันคือ "Reduce diff noise in GitHub pull requests"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pipe it Down

ดาวน์โหลดไฟล์ส่วนขยาย Pipe it Down ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}