Follow for Github

Makes following repository file movements simple!

Follow for Githubคืออะไร?

Follow for Github เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Stafford Williams และคุณลักษณะหลักของมันคือ "Makes following repository file movements simple!"

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

screenshot
screenshot

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

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

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

                        Supports private repositories via Chrome Extensions > Follow for Github > Options

This extension will change the View button into Left and Right buttons on Github.com file diffs moves/renames.

Clicking the Left button will move you to the full file as it existed in its previous location in the parent commit. Clicking the Right button does what the old View button did, and moves you to the full file on the current commit.

Open source! See/contribute to the source at http://github.com/staff0rd/github-follow-extension                    

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

ชื่อ Follow for Github Follow for Github
ID agalokjhnhheienloigiaoohgmjdpned
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/follow-for-github/agalokjhnhheienloigiaoohgmjdpned
คำอธิบาย Makes following repository file movements simple!
ขนาดไฟล์ 39.41 KB
จำนวนการติดตั้ง 1,875
เวอร์ชันปัจจุบัน 1.0.13
อัปเดตครั้งล่าสุด 2021-08-26
วันที่เผยแพร่ 2018-08-24
คะแนน 3.43/5 รวมทั้งหมด 21 คะแนน
ผู้พัฒนา Stafford Williams
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/staff0rd/github-follow-extension
URL หน้าช่วยเหลือ https://github.com/staff0rd/github-follow-extension
URL หน้านโยบายความเป็นส่วนตัว https://staffordwilliams.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.13",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "scripts\/commit.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "http:\/\/github.com\/*\/commits\/*",
                "https:\/\/github.com\/*\/commits\/*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "scripts\/history.js",
                "scripts\/options.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}