Github Sidebar

Make shortcuts to repositories you frequently use on Github. Faster navigation and better control over your repositories.

Github Sidebar란 무엇입니까?

Github Sidebar은(는) christiansletteneide에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make shortcuts to repositories you frequently use on Github. Faster navigation and better control over your repositories."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Do you often navigate between several repositories on GitHub? This Chrome Extension lets you bookmark repositories in a sidebar injected only on GitHub.com pages. The sidebar will let you navigate faster and give you better control over your most used repositories. 

Features

- Easy to bookmark and navigate repositories
- Overview over active Pull requests or Issues for your repos
- Periodically checks for new or updated items
- Optional to show badge in GitHub favicon if new items
- Works across multiple tabs
- Color coding of items based on status (Approved, Changes Requested)

Settings
- Repositories

Simply navigate to any Github repository you would like to add a shortcut to and press the button for *Add current repository*.

You can sort the order of repositories by simply drag&drop.

- Access Token

For all features of this extension to work, you will need to provide an access token from Github. This is not a requirement, but it will make the extension load data about issues and pull requests from your repositories. Please create an access token here https://github.com/settings/tokens/new?scopes=repo&description=Github%20sidebar%20browser%20extension to allow this extension to fetch necessary data from Github. The necessary scopes for the token is already selected if you follow the link above. All you need is to press "Generate Token", and copy/paste the token into the extension.

Note: The token is only saved to your browsers local *chrome.storage.local* and only used to communicate with Githubs API.

- Other settings
Should (hopefully) be pretty self-explanatory                    

확장 프로그램 기본 정보

이름 Github Sidebar Github Sidebar
ID lblnbldblpeiikndppnekobccdocccho
공식 URL https://chromewebstore.google.com/detail/github-sidebar/lblnbldblpeiikndppnekobccdocccho
설명 Make shortcuts to repositories you frequently use on Github. Faster navigation and better control over your repositories.
파일 크기 562 KB
설치 횟수 101
현재 버전 4.0.0
최근 업데이트 2022-04-11
출시 날짜 2020-04-05
평점 5.00/5 총 2 개의 평점
개발자 christiansletteneide
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/christianeide/github-sidebar
도움말 페이지 URL https://github.com/christianeide/github-sidebar
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Sidebar",
    "description": "Make shortcuts to repositories you frequently use on Github. Faster navigation and better control over your repositories.",
    "author": "Christian Gogstad Eide",
    "version": "4.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "images\/logo_16.png",
        "32": "images\/logo_32.png",
        "48": "images\/logo_48.png",
        "128": "images\/logo_128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "alarms"
    ],
    "host_permissions": [
        "https:\/\/github.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.png"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ]
}