Follow for Github

Makes following repository file movements simple!

Follow for Github là gì?

Follow for Github là một tiện ích mở rộng Chrome được phát triển bởi Stafford Williams, và tính năng chính của nó là "Makes following repository file movements simple!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Follow for Github

Tải xuống các tệp mở rộng Follow for Github dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Follow for Github Follow for Github
ID agalokjhnhheienloigiaoohgmjdpned
URL Chính Thức https://chrome.google.com/webstore/detail/follow-for-github/agalokjhnhheienloigiaoohgmjdpned
Mô tả Makes following repository file movements simple!
Kích Thước Tệp 39.41 KB
Số Lần Cài Đặt 1,875
Phiên Bản Hiện Tại 1.0.13
Cập Nhật Lần Cuối 2021-08-26
Ngày Phát Hành 2018-08-24
Đánh Giá 3.43/5 Tổng số 21 Đánh Giá
Nhà Phát Triển Stafford Williams
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/staff0rd/github-follow-extension
URL Trang Trợ Giúp https://github.com/staff0rd/github-follow-extension
URL Trang Chính Sách Bảo Mật https://staffordwilliams.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}