Github Turbo PR

An extension to optimize github for handling big pull request. 🚀

Github Turbo PRคืออะไร?

Github Turbo PR เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sudhanshuyadav2 และคุณลักษณะหลักของมันคือ "An extension to optimize github for handling big pull request. 🚀"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Turbo PR

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

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

                        Github pull request page gets unresponsive on a big PR and makes it very hard to review. This extension optimize the page to make it more responsive so that you spend less time reviewing code and more time drinking beer 🍻.

### Usage
For non Pull Request page the extension will be inactive.
On a PR compare page it will get active but by default it will be disabled.
If you feel your page is getting slow on a big PR you can click and enable it. You can toggle it back if you want.

### How does it optimize?
It applies a simple trick by detaching file diffs which are not visible and reattach them when they are about to come on viewport. Less DOM nodes in a DOM Tree, more performant the page it. And it does it performantly using Intersection Observer API https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API.

### Known caveats.
- As for optimization it detaches file diff from the page, browser find will not work as expected. Though you can search with a file name but not the content.
- Count in Review changes gets incorrect, but actually it does not affect any review comments. So don't get scared if number shows wrong.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Github Turbo PR Github Turbo PR
ID bajlfgjogojcoiijmmjeppgmppcdbbfb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-turbo-pr/bajlfgjogojcoiijmmjeppgmppcdbbfb
คำอธิบาย An extension to optimize github for handling big pull request. 🚀
ขนาดไฟล์ 37.62 KB
จำนวนการติดตั้ง 104
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2018-04-09
วันที่เผยแพร่ 2018-04-08
ผู้พัฒนา sudhanshuyadav2
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/s-yadav/github-turbo-pr
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Turbo PR",
    "version": "0.2.1",
    "manifest_version": 2,
    "description": "An extension to optimize github for handling big pull request. \ud83d\ude80",
    "homepage_url": "http:\/\/github.com\/s-yadav\/github-turbo-pr",
    "icons": {
        "16": "icons\/turbopr16.png",
        "48": "icons\/turbopr48.png",
        "128": "icons\/turbopr128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": {
            "19": "icons\/turbopr19_disabled.png",
            "38": "icons\/turbopr38_disabled.png"
        },
        "default_title": "Enable Turbo PR"
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/turbopr38.png",
        "icons\/turbopr38_disabled.png"
    ]
}