HubCare - Check GitHub repositories' health

Fastly check a GitHub repository's health and save your time when choosing what software to use or contribute with.

HubCare - Check GitHub repositories' health란 무엇입니까?

HubCare - Check GitHub repositories' health은(는) cjj.castro3에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fastly check a GitHub repository's health and save your time when choosing what software to use or contribute with."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

HubCare - Check GitHub repositories' health 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The Hubcare is an open-source project to manage if a repository is good or not to a newcomer, either a passing visitor, someone who looks for contributions or someone who just is interested in the software.                    

확장 프로그램 기본 정보

이름 HubCare - Check GitHub repositories' health HubCare - Check GitHub repositories' health
ID jaalemmhbmjojoppdncnekgnjgfbfbda
공식 URL https://chrome.google.com/webstore/detail/hubcare-check-github-repo/jaalemmhbmjojoppdncnekgnjgfbfbda
설명 Fastly check a GitHub repository's health and save your time when choosing what software to use or contribute with.
파일 크기 281 KB
설치 횟수 14
현재 버전 1.1.0
최근 업데이트 2019-06-24
출시 날짜 2019-06-24
평점 2.67/5 총 3 개의 평점
개발자 cjj.castro3
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.1.0",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/popup.html"
    },
    "options_page": "pages\/options.html",
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true
    },
    "minimum_chrome_version": "10.0",
    "devtools_page": "pages\/devtools.html",
    "chrome_url_overrides": [],
    "omnibox": {
        "keyword": "hubcare"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*",
                "http:\/\/*.github.com\/*",
                "https:\/\/*.github.com\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js",
                "scripts\/oauth2.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "activeTab",
        "bookmarks",
        "browsingData",
        "contextMenus",
        "history",
        "identity",
        "idle",
        "management",
        "nativeMessaging",
        "notifications",
        "privacy",
        "proxy",
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/hubcare.ml\/*",
        "storage"
    ],
    "web_accessible_resources": [
        "images\/questionMark.svg"
    ]
}