Follow for Github

Makes following repository file movements simple!

Follow for Github란 무엇입니까?

Follow for Github은(는) Stafford Williams에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes following repository file movements simple!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Follow for Github 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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