GitHub Favorites

Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.

GitHub Favorites란 무엇입니까?

GitHub Favorites은(는) hswolff에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list."입니다.

확장 프로그램 스크린샷

screenshot

GitHub Favorites 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This little extension for Google Chrome adds a Favorite button on GitHub repository pages right next to the Watch button.  

When you hit the Favorite button it adds that repo to the folder 'GitHub Favorites' in your Bookmarks.  

If you want to remove the bookmark just hit the Favorite button again!

Full info available on the GitHub repository!  https://github.com/hswolff/github-favorites                    

확장 프로그램 기본 정보

이름 GitHub Favorites GitHub Favorites
ID kfhdalekdpifhlndhcdnjgjoefiajefc
공식 URL https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc
설명 Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
파일 크기 593 KB
설치 횟수 201
현재 버전 1.4
최근 업데이트 2014-02-22
출시 날짜 2014-02-22
평점 5.00/5 총 2 개의 평점
개발자 hswolff
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/hswolff/github-favorites
지원되는 언어 en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Favorites",
    "version": "1.4",
    "description": "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "script.js"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "bookmarks",
        "https:\/\/github.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "exclude_globs": [
                "*.com\/blog*",
                "*.com\/explore*",
                "*.com\/settings*",
                "*.com\/inbox*",
                "*.com\/repositories*",
                "*.com\/popular*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}