GitHub go to line number

Open-source extension which adds a go to line number modal right into GitHub

GitHub go to line number란 무엇입니까?

GitHub go to line number은(는) NicoSantangelo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open-source extension which adds a go to line number modal right into GitHub"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

GitHub go to line number 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        If you ever wanted to find a particular line number on GitHub and grew frustrated because Chrome refuses to find it, this is for you.

The modal is toggled pressing ctrl+g and supports both diffs and single code files. You can cycle throughout the results using the enter key to move forward and shift+enter to move backwards.                    

확장 프로그램 기본 정보

이름 GitHub go to line number GitHub go to line number
ID cbpdahjcomdapkaojlbhbbmopbmbecio
공식 URL https://chromewebstore.google.com/detail/github-go-to-line-number/cbpdahjcomdapkaojlbhbbmopbmbecio
설명 Open-source extension which adds a go to line number modal right into GitHub
파일 크기 16.24 KB
설치 횟수 103
현재 버전 1.2.0
최근 업데이트 2016-07-19
출시 날짜 2016-07-18
평점 5.00/5 총 4 개의 평점
개발자 NicoSantangelo
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/NicoSantangelo/github-go-to-line-number
개인정보 보호 정책 페이지 URL https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub go to line number",
    "description": "Open-source extension which adds a go to line number modal right into GitHub",
    "short_name": "Github goto",
    "version": "1.2.0",
    "icons": {
        "16": "icons\/16.png",
        "19": "icons\/19.png",
        "38": "icons\/38.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.github.com\/*",
                "http:\/\/www.github.com\/*",
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [],
    "web_accessible_resources": [
        "modal.html"
    ]
}